mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-22 12:41:05 +01:00
Implemented element for matrix
This commit is contained in:
parent
31bbe9a457
commit
95fa139086
@ -103,7 +103,7 @@ redirect_domain_mappings:
|
|||||||
- { source: "funkwhale.{{top_domain}}", target: "music.{{top_domain}}" }
|
- { source: "funkwhale.{{top_domain}}", target: "music.{{top_domain}}" }
|
||||||
- { source: "pixelfed.{{top_domain}}", target: "picture.{{top_domain}}" }
|
- { source: "pixelfed.{{top_domain}}", target: "picture.{{top_domain}}" }
|
||||||
- { source: "pictures.{{top_domain}}", target: "picture.{{top_domain}}" }
|
- { source: "pictures.{{top_domain}}", target: "picture.{{top_domain}}" }
|
||||||
- { source: "matrix.{{top_domain}}", target: "chat.{{top_domain}}" }
|
- { source: "element.{{top_domain}}", target: "chat.{{top_domain}}" }
|
||||||
|
|
||||||
## Docker Applications
|
## Docker Applications
|
||||||
|
|
||||||
@ -120,7 +120,8 @@ domain_mailu: "mail.{{top_domain}}"
|
|||||||
domain_mastodon: "microblog.{{top_domain}}"
|
domain_mastodon: "microblog.{{top_domain}}"
|
||||||
domains_mastodon_alternates: []
|
domains_mastodon_alternates: []
|
||||||
domain_matomo: "matomo.{{top_domain}}"
|
domain_matomo: "matomo.{{top_domain}}"
|
||||||
domain_matrix: "chat.{{top_domain}}"
|
domain_matrix_synapse: "matrix.{{top_domain}}"
|
||||||
|
domain_matrix_element: "chat.{{top_domain}}"
|
||||||
domain_mediawiki: "wiki.{{top_domain}}"
|
domain_mediawiki: "wiki.{{top_domain}}"
|
||||||
domain_nextcloud: "cloud.{{top_domain}}"
|
domain_nextcloud: "cloud.{{top_domain}}"
|
||||||
domain_pixelfed: "picture.{{top_domain}}"
|
domain_pixelfed: "picture.{{top_domain}}"
|
||||||
@ -138,3 +139,5 @@ version_mastodon: "latest"
|
|||||||
|
|
||||||
### Role specific configuration
|
### Role specific configuration
|
||||||
pixelfed_app_name: "Pictures"
|
pixelfed_app_name: "Pictures"
|
||||||
|
|
||||||
|
top_domain: "localhost"
|
||||||
|
@ -34,6 +34,13 @@ Matrix is an open-source project that provides a protocol for secure, decentrali
|
|||||||
```
|
```
|
||||||
docker-compose logs
|
docker-compose logs
|
||||||
```
|
```
|
||||||
|
## Sources
|
||||||
|
|
||||||
|
### Guides
|
||||||
|
|
||||||
|
- https://cyberhost.uk/element-matrix-setup/
|
||||||
|
- https://www.linode.com/docs/guides/how-to-install-the-element-chat-app/
|
||||||
|
- https://hub.docker.com/r/vectorim/element-web
|
||||||
|
|
||||||
## Links to ChatGPT Conversations
|
## Links to ChatGPT Conversations
|
||||||
|
|
||||||
|
@ -1,6 +1,15 @@
|
|||||||
---
|
---
|
||||||
- name: "include tasks nginx-docker-proxy-domain.yml"
|
- name: "include tasks nginx-docker-proxy-domain.yml"
|
||||||
include_tasks: nginx-docker-proxy-domain.yml
|
include_tasks: nginx-docker-proxy-domain.yml
|
||||||
|
vars:
|
||||||
|
domain: "{{synapse_domain}}"
|
||||||
|
http_port: "{{synapse_http_port}}"
|
||||||
|
|
||||||
|
- name: "include tasks nginx-docker-proxy-domain.yml"
|
||||||
|
include_tasks: nginx-docker-proxy-domain.yml
|
||||||
|
vars:
|
||||||
|
domain: "{{element_domain}}"
|
||||||
|
http_port: "{{element_http_port}}"
|
||||||
|
|
||||||
- name: "create {{docker_compose_instance_directory}}"
|
- name: "create {{docker_compose_instance_directory}}"
|
||||||
file:
|
file:
|
||||||
@ -8,6 +17,12 @@
|
|||||||
state: directory
|
state: directory
|
||||||
mode: 0755
|
mode: 0755
|
||||||
|
|
||||||
|
- name: add element-config.json
|
||||||
|
template:
|
||||||
|
src: "element-config.json.j2"
|
||||||
|
dest: "{{docker_compose_instance_directory}}element-config.json"
|
||||||
|
notify: recreate matrix
|
||||||
|
|
||||||
- name: add homeserver.yaml
|
- name: add homeserver.yaml
|
||||||
template:
|
template:
|
||||||
src: "homeserver.yaml.j2"
|
src: "homeserver.yaml.j2"
|
||||||
@ -17,13 +32,13 @@
|
|||||||
- name: add log.config
|
- name: add log.config
|
||||||
template:
|
template:
|
||||||
src: "log.config.j2"
|
src: "log.config.j2"
|
||||||
dest: "{{docker_compose_instance_directory}}{{domain}}.log.config"
|
dest: "{{docker_compose_instance_directory}}{{synapse_domain}}.log.config"
|
||||||
notify: recreate matrix
|
notify: recreate matrix
|
||||||
|
|
||||||
# https://github.com/matrix-org/synapse/issues/6303
|
# https://github.com/matrix-org/synapse/issues/6303
|
||||||
- name: set correct folder permissions
|
- name: set correct folder permissions
|
||||||
command:
|
command:
|
||||||
cmd: "docker run --rm --mount type=volume,src=matrix_synapse_data,dst=/data -e SYNAPSE_SERVER_NAME={{domain}} -e SYNAPSE_REPORT_STATS=no --entrypoint /bin/sh matrixdotorg/synapse:latest -c 'chown -vR 991:991 /data'"
|
cmd: "docker run --rm --mount type=volume,src=matrix_synapse_data,dst=/data -e SYNAPSE_SERVER_NAME={{synapse_domain}} -e SYNAPSE_REPORT_STATS=no --entrypoint /bin/sh matrixdotorg/synapse:latest -c 'chown -vR 991:991 /data'"
|
||||||
|
|
||||||
- name: add docker-compose.yml
|
- name: add docker-compose.yml
|
||||||
template:
|
template:
|
||||||
|
@ -10,12 +10,12 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- synapse_data:/data
|
- synapse_data:/data
|
||||||
- ./homeserver.yaml:/data/homeserver.yaml:ro
|
- ./homeserver.yaml:/data/homeserver.yaml:ro
|
||||||
- ./{{domain}}.log.config:/data/{{domain}}.log.config:ro
|
- ./{{synapse_domain}}.log.config:/data/{{synapse_domain}}.log.config:ro
|
||||||
environment:
|
environment:
|
||||||
- SYNAPSE_SERVER_NAME={{domain}}
|
- SYNAPSE_SERVER_NAME={{synapse_domain}}
|
||||||
- SYNAPSE_REPORT_STATS=no
|
- SYNAPSE_REPORT_STATS=no
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:{{http_port}}:8008"
|
- "127.0.0.1:{{synapse_http_port}}:8008"
|
||||||
depends_on:
|
depends_on:
|
||||||
- database
|
- database
|
||||||
database:
|
database:
|
||||||
@ -35,6 +35,13 @@ services:
|
|||||||
interval: 10s
|
interval: 10s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 6
|
retries: 6
|
||||||
|
element:
|
||||||
|
image: vectorim/element-web:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ./element-config.json:/app/config.json
|
||||||
|
ports:
|
||||||
|
- "127.0.0.1:{{element_http_port}}:80"
|
||||||
|
|
||||||
# bridges
|
# bridges
|
||||||
#mautrix-telegram:
|
#mautrix-telegram:
|
||||||
|
59
roles/docker-matrix/templates/element-config.json.j2
Normal file
59
roles/docker-matrix/templates/element-config.json.j2
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
{
|
||||||
|
"default_server_config": {
|
||||||
|
"m.homeserver": {
|
||||||
|
"base_url": "https://{{domain_matrix_synapse}}",
|
||||||
|
"server_name": "{{domain_matrix_synapse}}"
|
||||||
|
},
|
||||||
|
"m.identity_server": {
|
||||||
|
"base_url": "https://{{top_domain}}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"brand": "Element",
|
||||||
|
"integrations_ui_url": "https://scalar.vector.im/",
|
||||||
|
"integrations_rest_url": "https://scalar.vector.im/api",
|
||||||
|
"integrations_widgets_urls": [
|
||||||
|
"https://scalar.vector.im/_matrix/integrations/v1",
|
||||||
|
"https://scalar.vector.im/api",
|
||||||
|
"https://scalar-staging.vector.im/_matrix/integrations/v1",
|
||||||
|
"https://scalar-staging.vector.im/api",
|
||||||
|
"https://scalar-staging.riot.im/scalar/api"
|
||||||
|
],
|
||||||
|
"bug_report_endpoint_url": "https://element.io/bugreports/submit",
|
||||||
|
"uisi_autorageshake_app": "element-auto-uisi",
|
||||||
|
"show_labs_settings": true,
|
||||||
|
"room_directory": {
|
||||||
|
"servers": ["matrix.org", "gitter.im", "libera.chat"]
|
||||||
|
},
|
||||||
|
"enable_presence_by_hs_url": {
|
||||||
|
"https://matrix.org": false,
|
||||||
|
"https://matrix-client.matrix.org": false
|
||||||
|
},
|
||||||
|
"terms_and_conditions_links": [
|
||||||
|
{
|
||||||
|
"url": "https://element.io/privacy",
|
||||||
|
"text": "Privacy Policy"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://element.io/cookie-policy",
|
||||||
|
"text": "Cookie Policy"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sentry": {
|
||||||
|
"dsn": "https://029a0eb289f942508ae0fb17935bd8c5@sentry.matrix.org/6",
|
||||||
|
"environment": "develop"
|
||||||
|
},
|
||||||
|
"posthog": {
|
||||||
|
"project_api_key": "phc_Jzsm6DTm6V2705zeU5dcNvQDlonOR68XvX2sh1sEOHO",
|
||||||
|
"api_host": "https://posthog.element.io"
|
||||||
|
},
|
||||||
|
"privacy_policy_url": "https://element.io/cookie-policy",
|
||||||
|
"features": {
|
||||||
|
"feature_video_rooms": true,
|
||||||
|
"feature_rust_crypto": true,
|
||||||
|
"feature_new_room_decoration_ui": true
|
||||||
|
},
|
||||||
|
"element_call": {
|
||||||
|
"url": "https://call.element.dev"
|
||||||
|
},
|
||||||
|
"map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx"
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
server_name: "{{domain}}"
|
server_name: "{{domain_matrix_synapse}}"
|
||||||
pid_file: /data/homeserver.pid
|
pid_file: /data/homeserver.pid
|
||||||
listeners:
|
listeners:
|
||||||
- port: 8008
|
- port: 8008
|
||||||
@ -17,12 +17,12 @@ database:
|
|||||||
host: database
|
host: database
|
||||||
cp_min: 5
|
cp_min: 5
|
||||||
cp_max: 10
|
cp_max: 10
|
||||||
log_config: "/data/{{domain}}.log.config"
|
log_config: "/data/{{domain_matrix_synapse}}.log.config"
|
||||||
media_store_path: /data/media_store
|
media_store_path: /data/media_store
|
||||||
registration_shared_secret: "{{matrix_registration_shared_secret}}"
|
registration_shared_secret: "{{matrix_registration_shared_secret}}"
|
||||||
report_stats: true
|
report_stats: true
|
||||||
macaroon_secret_key: "{{matrix_macaroon_secret_key}}"
|
macaroon_secret_key: "{{matrix_macaroon_secret_key}}"
|
||||||
form_secret: "{{matrix_form_secret}}"
|
form_secret: "{{matrix_form_secret}}"
|
||||||
signing_key_path: "/data/{{domain}}.signing.key"
|
signing_key_path: "/data/{{domain_matrix_synapse}}.signing.key"
|
||||||
trusted_key_servers:
|
trusted_key_servers:
|
||||||
- server_name: "matrix.org"
|
- server_name: "matrix.org"
|
||||||
|
@ -8,7 +8,7 @@ handlers:
|
|||||||
file:
|
file:
|
||||||
class: logging.handlers.RotatingFileHandler
|
class: logging.handlers.RotatingFileHandler
|
||||||
formatter: precise
|
formatter: precise
|
||||||
filename: /data/{{ domain }}.homeserver.log
|
filename: /data/{{synapse_domain}}.homeserver.log
|
||||||
maxBytes: 10485760
|
maxBytes: 10485760
|
||||||
backupCount: 3
|
backupCount: 3
|
||||||
console:
|
console:
|
||||||
|
@ -205,8 +205,10 @@
|
|||||||
roles:
|
roles:
|
||||||
- role: docker-matrix
|
- role: docker-matrix
|
||||||
vars:
|
vars:
|
||||||
domain: "{{domain_matrix}}"
|
synapse_domain: "{{domain_matrix_synapse}}"
|
||||||
http_port: 8021
|
synapse_http_port: 8021
|
||||||
|
element_domain: "{{domain_matrix_element}}"
|
||||||
|
element_http_port: 8022
|
||||||
|
|
||||||
- name: setup akaunting hosts
|
- name: setup akaunting hosts
|
||||||
hosts: akaunting
|
hosts: akaunting
|
||||||
|
Loading…
Reference in New Issue
Block a user