Adding some missing matrix stuff. Trying to get federation to work.

This commit is contained in:
Víðir Valberg Guðmundsson 2019-02-13 09:49:22 +01:00
parent fefbabcc33
commit 79149a4cba
3 changed files with 5 additions and 3 deletions

View File

@ -16,6 +16,7 @@
- passit - passit
- gitea - gitea
- postfix - postfix
- matrix_riot
smtp_host: postfix smtp_host: postfix
smtp_port: 587 smtp_port: 587

View File

@ -27,11 +27,11 @@
"piwik": false, "piwik": false,
"roomDirectory": { "roomDirectory": {
"servers": [ "servers": [
"matrix.data.coop" "{{ base_domain }}"
] ]
}, },
"enable_presence_by_hs_url": { "enable_presence_by_hs_url": {
"https://matrix.data.coop": false "https://{{ matrix.domain }}": false
}, },
"terms_and_conditions_links": [ "terms_and_conditions_links": [
{ {

View File

@ -44,9 +44,10 @@
networks: networks:
- name: matrix - name: matrix
published_ports: published_ports:
- 8008:8008
- 8448:8448 - 8448:8448
env: env:
SYNAPSE_SERVER_NAME: "{{ matrix.domain }}" SYNAPSE_SERVER_NAME: "{{ base_domain }}"
SYNAPSE_REPORT_STATS: "False" SYNAPSE_REPORT_STATS: "False"
SYNAPSE_ENABLE_REGISTRATION: "True" SYNAPSE_ENABLE_REGISTRATION: "True"
SYNAPSE_LOG_LEVEL: "INFO" SYNAPSE_LOG_LEVEL: "INFO"