62 lines
1.6 KiB
YAML
62 lines
1.6 KiB
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: synapse
|
|
data:
|
|
# matrix.kluster.moll.re.log.config: |
|
|
# version: 1
|
|
|
|
# formatters:
|
|
# precise:
|
|
# format: '%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(request)s - %(message)s'
|
|
|
|
# handlers:
|
|
# console:
|
|
# class: logging.StreamHandler
|
|
# formatter: precise
|
|
|
|
# loggers:
|
|
# # This is just here so we can leave `loggers` in the config regardless of whether
|
|
# # we configure other loggers below (avoid empty yaml dict error).
|
|
# _placeholder:
|
|
# level: "INFO"
|
|
|
|
# synapse.storage.SQL:
|
|
# # beware: increasing this to DEBUG will make synapse log sensitive
|
|
# # information such as access tokens.
|
|
# level: INFO
|
|
|
|
|
|
|
|
# root:
|
|
# level: INFO
|
|
# handlers: [console]
|
|
|
|
homeserver.yaml: |
|
|
server_name: "matrix.kluster.moll.re"
|
|
report_stats: false
|
|
# enable_registration: true
|
|
# enable_registration_without_verification: true
|
|
listeners:
|
|
- port: 8448
|
|
tls: false
|
|
type: http
|
|
x_forwarded: true
|
|
bind_addresses: ['::1', '127.0.0.1']
|
|
resources:
|
|
- names: [client, federation]
|
|
compress: false
|
|
|
|
# log_config: "./matrix.kluster.moll.re.log.config"
|
|
media_store_path: /media_store
|
|
trusted_key_servers:
|
|
- server_name: "matrix.org"
|
|
database:
|
|
name: psycopg2
|
|
args:
|
|
user: matrix
|
|
password: "0ssdsdsdM6vbxhs.kdjsdasd9Z0qK5bdTwM6vbxh9Z"
|
|
dbname: matrix
|
|
host: matrix-postgres-rw
|
|
cp_min: 5
|
|
cp_max: 10 |