2024-01-19 16:34:23 +01:00
|
|
|
server_name: "{{matrix_server_name}}"
|
2023-12-22 10:23:42 +01:00
|
|
|
pid_file: /data/homeserver.pid
|
|
|
|
listeners:
|
|
|
|
- port: 8008
|
|
|
|
tls: false
|
|
|
|
type: http
|
|
|
|
x_forwarded: true
|
|
|
|
resources:
|
|
|
|
- names: [client, federation]
|
|
|
|
compress: false
|
|
|
|
database:
|
|
|
|
name: psycopg2
|
|
|
|
args:
|
2024-01-04 20:57:02 +01:00
|
|
|
user: "{{database_username}}"
|
|
|
|
password: "{{database_password}}"
|
2024-01-06 14:32:49 +01:00
|
|
|
database: "{{database_name}}"
|
2024-01-04 20:57:02 +01:00
|
|
|
host: "{{database_host}}"
|
2023-12-22 10:23:42 +01:00
|
|
|
cp_min: 5
|
|
|
|
cp_max: 10
|
|
|
|
log_config: "/data/{{domain_matrix_synapse}}.log.config"
|
2024-01-20 12:46:07 +01:00
|
|
|
media_store_path: "/data/media_store"
|
2023-12-22 10:23:42 +01:00
|
|
|
registration_shared_secret: "{{matrix_registration_shared_secret}}"
|
|
|
|
report_stats: true
|
|
|
|
macaroon_secret_key: "{{matrix_macaroon_secret_key}}"
|
|
|
|
form_secret: "{{matrix_form_secret}}"
|
|
|
|
signing_key_path: "/data/{{domain_matrix_synapse}}.signing.key"
|
|
|
|
web_client_location: "https://{{element_domain}}"
|
|
|
|
public_baseurl: "https://{{synapse_domain}}"
|
|
|
|
trusted_key_servers:
|
|
|
|
- server_name: "matrix.org"
|
|
|
|
admin_contact: 'mailto:{{administrator_email}}'
|
|
|
|
|
|
|
|
email:
|
|
|
|
smtp_host: "{{system_email_host}}"
|
|
|
|
smtp_port: "{{system_email_smtp_port}}"
|
|
|
|
smtp_user: "{{system_email_username}}"
|
|
|
|
smtp_pass: "{{system_email_password}}"
|
|
|
|
#force_tls: true
|
|
|
|
#require_transport_security: true
|
|
|
|
enable_tls: "{{ system_email_tls | upper }}"
|
|
|
|
notif_from: "Your Friendly %(app)s homeserver <{{system_email}}>"
|
2024-01-19 16:34:23 +01:00
|
|
|
app_name: "Matrix on {{synapse_domain}}"
|
2023-12-22 10:23:42 +01:00
|
|
|
enable_notifs: true
|
|
|
|
notif_for_new_users: false
|
|
|
|
client_base_url: "{{domain_matrix_synapse}}"
|
2024-01-14 20:08:08 +01:00
|
|
|
validation_token_lifetime: 15m
|
|
|
|
|
|
|
|
app_service_config_files:
|
2024-01-15 01:00:59 +01:00
|
|
|
{% for item in bridges %}
|
|
|
|
- {{registration_file_folder}}{{item.bridge_name}}.registration.yaml
|
|
|
|
{% endfor %}
|