1
0
Derivar 0
synapse configuration for zknt.org
Ir para o ficheiro
chris 48e9c99a33 Merge branch 'trunk' of ssh://git.zknt.org:2222/chris/synapse_config into trunk 2022-05-11 01:31:59 +02:00
README.md flesh out readme 2022-05-11 01:30:52 +02:00
client.yaml init 2022-05-07 15:38:45 +00:00
docker-compose.yaml use external images 2022-05-11 01:30:54 +02:00
federation-receiver.yaml init 2022-05-07 15:38:45 +00:00
federation-sender.yaml init 2022-05-07 15:38:45 +00:00
homeserver.yaml fix 2022-05-11 01:30:51 +02:00
zknt.org.log.config init 2022-05-07 15:38:45 +00:00

README.md

Matrix/Synapse configuration

Everything (except for docker-compose.yaml) goes into the data-volume of the synapse installation.

This uses the semi-official synapse image: https://hub.docker.com/r/matrixdotorg/synapse

Config is cobbled together using the worker documentation: https://matrix-org.github.io/synapse/latest/workers.html#setting-up-workers and this blog post: https://netfg.net/post/128

First time launch:

  • Create containers and volumes: docker-compose up --no-start
  • Generate Keys and config: docker-compose run --rm -e SYNAPSE_SERVER_NAME=??? -e SYNAPSE_REPORT_STATS=no synapse generate
  • Read through the generated homeserver.yaml. Take note of generated keys, etc.
  • Replace homeserver.yaml in your data volume with the one from this repository, adapting to your needs. Use the keys from the step before. Copy the other config-yamls to your /data directory.
  • Start the databases: docker-compose up -d redis postgres
  • Start the synapse services: docker-compose up -d
  • Don't forget to backup your config directory and database
  • Good luck :)