add initial homeserver.yaml

This commit is contained in:
Nico Schottelius 2023-09-27 12:19:46 +02:00
commit 0dcb46895a
6 changed files with 2957 additions and 41 deletions

View file

@ -1,4 +1,4 @@
SYNAPSE_VERSION=v1.92.3
HOME_SERVER_FQDN=corp-serv.net
SYNAPSE_FQDN=synapse.corp-apps.com
SYNAPSE_SERVER_NAME=corp-serv.net
NGINX_SYNAPSE_FQDN=synapse.corp-apps.com

File diff suppressed because it is too large Load diff

View file

@ -3,12 +3,13 @@ services:
synapse:
image: matrixdotorg/synapse:${SYNAPSE_VERSION}
environment:
- SYNAPSE_CONFIG_PATH=/data/homeserver.yaml
- SERVERNAME=${HOME_SERVER_FQDN}
- PUBLICBASEURL=${SYNAPSE_FQDN}
ports:
- "8008:8008/tcp"
volumes:
- /mnt/synapse_data:/data
entrypoint: sh -c "/data/homeserver.yaml.sh && chmod -R 777 /data && /start.py"
- ./config:/config
command:
- run
- --config-path=/config/homeserver.yaml
# - --config-path=/config/generic_worker.yaml
restart: always