Created
January 24, 2023 12:37
-
-
Save ThomasHalwax/ddcfc0523b0a23a80c660a7e01425f0d to your computer and use it in GitHub Desktop.
Synapse configuration file to be used with the docker compose file for testing federation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server_name: "matrix.left-org.lan" | |
pid_file: /data/homeserver.pid | |
listeners: | |
- port: 8008 | |
tls: false | |
type: http | |
x_forwarded: true | |
resources: | |
- names: [client, federation] | |
compress: false | |
- port: 8448 | |
tls: false | |
type: http | |
x_forwarded: true | |
resources: | |
- names: [client, federation] | |
compress: false | |
database: | |
database: | |
name: sqlite3 | |
args: | |
database: /data/homeserver.db | |
log_config: "/data/matrix.left-org.lan.log.config" | |
media_store_path: /data/media_store | |
registration_shared_secret: "-super-secure-" | |
report_stats: false | |
macaroon_secret_key: "-no-one-can-guess-this" | |
form_secret: "-random-string" | |
signing_key_path: "/data/matrix.left-org.lan.signing.key" | |
trusted_key_servers: [] | |
federation_verify_certificates: false | |
federation_domain_whitelist: | |
- matrix.right-org.lan | |
enable_registration: true | |
enable_registration_without_verification: true | |
ip_range_whitelist: | |
- '172.28.0.0/16' | |
# serve_server_wellknown: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment