Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # 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
- #
- # This is set in /etc/matrix-synapse/conf.d/server_name.yaml for Debian installations.
- #server_name: "nthpyro.dev"
- pid_file: "/var/run/matrix-synapse.pid"
- listeners:
- - port: 8008
- tls: false
- type: http
- x_forwarded: true
- bind_addresses: ['::1', '127.0.0.1']
- resources:
- - names: [client, federation]
- compress: false
- database:
- name: psycopg2
- txn_limit: 10000
- args:
- user: synapse_user
- password: redacted
- database: synapse
- host: localhost
- port: 5432
- cp_min: 5
- cp_max: 10
- log_config: "/etc/matrix-synapse/log.yaml"
- media_store_path: /var/lib/matrix-synapse/media
- signing_key_path: "/etc/matrix-synapse/homeserver.signing.key"
- registration_shared_secret: "redacted"
- trusted_key_servers:
- - server_name: "matrix.org"
- enable_federation: true
- admin_contact: 'mailto:[email protected]'
- max_upload_size: 30M
- media_retention:
- local_media_lifetime: 180d
- remote_media_lifetime: 7d
- max_avatar_size: 5M
- enable_registration: false
- enable_registration_without_verification: true
- room_list_publication_rules:
- - user_id: "@redacted:nthpyro.dev"
- action: "allow"
- - "action": "deny"
- admin_users:
- - "@redacted:nthpyro.dev"
- auto_join_rooms:
- - "#!redacted:nthpyro.dev"
- - "#!redacted:nthpyro.dev"
- retention:
- enabled: true
- default_policy:
- min_lifetime: 1d
- max_lifetime: 1y
- allowed_lifetime_min: 1d
- allowed_lifetime_max: 1y
- purge_jobs:
- - longest_max_lifetime: 3d
- interval: 12h
- - shortest_max_lifetime: 3d
- interval: 1d
Advertisement
Add Comment
Please, Sign In to add comment