53 lines
1.7 KiB
YAML
53 lines
1.7 KiB
YAML
# Configuration file for Synapse.
|
|
#
|
|
# This is a YAML file: see [1] for a quick introduction. Note in particular
|
|
# that *indentation is important*: all the elements of a list or dictionary
|
|
# should have the same indentation.
|
|
#
|
|
# [1] https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html
|
|
#
|
|
# For more information on how to configure Synapse, including a complete accounting of
|
|
# each option, go to docs/usage/configuration/config_documentation.md or
|
|
# https://element-hq.github.io/synapse/latest/usage/configuration/config_documentation.html
|
|
server_name: "depeuter.dev"
|
|
public_baseurl: "https://matrix.depeuter.dev"
|
|
pid_file: /data/homeserver.pid
|
|
listeners:
|
|
- port: 8008
|
|
tls: false
|
|
type: http
|
|
x_forwarded: true
|
|
resources:
|
|
- names: [client]
|
|
compress: false
|
|
database:
|
|
name: psycopg2
|
|
txn_limit: 10000
|
|
args:
|
|
user: synapse
|
|
password: Ql6Q2gGIgLtBYy29qdjGchAxqe1oUuCbdIQEuAEyQgNG0NTfnPyd8x5HqS4QLQUU
|
|
host: synapse_postgres
|
|
port: 5432
|
|
cp_min: 5
|
|
cp_max: 10
|
|
log_config: "/data/depeuter.dev.log.config"
|
|
media_store_path: /data/media_store
|
|
registration_shared_secret: "i1DgMwE=YAMD4qy2#aZ#hc~zS^_;NCHrTblf7oZRdNwiXZfTQ8"
|
|
report_stats: false
|
|
macaroon_secret_key: "rU.4JCjsxzQjeDJBfFcSIWh@-L,UizEryQt8*V@3CVjC@N1ISl"
|
|
form_secret: "Zm=:E;M_AVKE:yXW1@SE8fO5tu.2mAGW8YA1&x^Q@TNf;GPYYA"
|
|
signing_key_path: "/data/depeuter.dev.signing.key"
|
|
trusted_key_servers:
|
|
- server_name: "matrix.org"
|
|
|
|
web_client_location: https://cinny.depeuter.dev/
|
|
user_directory:
|
|
enabled: true
|
|
search_all_users: true
|
|
|
|
app_service_config_files:
|
|
- /data/mautrix-discord-registration.yaml
|
|
- /data/mautrix-meta-registration.yaml
|
|
- /data/mautrix-whatsapp-registration.yaml
|
|
|
|
# vim:ft=yaml
|