blob: 1f6221f4fae3c9d170afd42ff39260d39e52e569 [file] [log] [blame]
Piotr Dobrowolski8ec86572021-01-30 13:06:07 +01001## Common secrets ##
2registration_shared_secret: "$(SYNAPSE_REGISTRATION_SHARED_SECRET)"
3macaroon_secret_key: "$(SYNAPSE_MACAROON_SECRET_KEY)"
4worker_replication_secret: "$(WORKER_REPLICATION_SECRET)"
5
6## Database ##
7database:
8 name: "psycopg2"
9 args:
10 user: "synapse"
11 password: "$(POSTGRES_PASSWORD)"
12 database: "synapse"
13 host: "waw3-postgres"
14 port: "5432"
15 cp_min: 5
16 cp_max: 10
17
18## Replication Redis ##
19redis:
20 enabled: true
21 host: "redis"
22 password: "$(REDIS_PASSWORD)"