initial commit
This commit is contained in:
54
obsidian-logic/matrix/homeserver.yaml
Normal file
54
obsidian-logic/matrix/homeserver.yaml
Normal file
@@ -0,0 +1,54 @@
|
||||
# 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: "mydigitalfix.com"
|
||||
pid_file: /data/homeserver.pid
|
||||
listeners:
|
||||
- port: 8008
|
||||
resources:
|
||||
- compress: false
|
||||
names:
|
||||
- client
|
||||
- federation
|
||||
tls: false
|
||||
type: http
|
||||
x_forwarded: true
|
||||
database:
|
||||
name: psycopg2
|
||||
txn_limit: 10000
|
||||
args:
|
||||
user: synapse
|
||||
password:
|
||||
database: synapse
|
||||
host: synapse-db
|
||||
port: 5432
|
||||
cp_min: 5
|
||||
cp_max: 10
|
||||
log_config: "/data/mydigitalfix.log.config"
|
||||
media_store_path: /data/media_store
|
||||
registration_shared_secret:
|
||||
report_stats: true
|
||||
macaroon_secret_key:
|
||||
form_secret:
|
||||
signing_key_path: "/data/mydigitalfix.signing.key"
|
||||
trusted_key_servers:
|
||||
- server_name: "matrix.org"
|
||||
turn_uris:
|
||||
- "turn:matrix.mydigitalfix:3478?transport=udp"
|
||||
- "turn:matrix.mydigitalfix:3478?transport=tcp"
|
||||
- "turns:matrix.mydigitalfix:3478?transport=udp"
|
||||
- "turns:matrix.mydigitalfix:3478?transport=tcp"
|
||||
turn_shared_secret:
|
||||
turn_user_lifetime: 86400000
|
||||
turn_allow_guests: False
|
||||
|
||||
|
||||
# vim:ft=yaml
|
||||
Reference in New Issue
Block a user