docker-conduit/conduit.toml

24 lines
734 B
TOML
Raw Permalink Normal View History

2021-12-14 00:07:05 +00:00
[global]
# This is the only directory where Conduit will save its data
database_path = "/mnt/conduit_db"
# The port Conduit will be running on. You need to set up a reverse proxy in
# your web server (e.g. apache or nginx), so all requests to /_matrix on port
# 443 and 8448 will be forwarded to the Conduit instance running on this port
port = 6167
# Max size for uploads
max_request_size = 40_000_000 # in bytes
# Enables registration. If set to false, no users can register on this server.
allow_registration = true
# Disable encryption, so no new encrypted rooms can be created
# Note: existing rooms will continue to work
allow_encryption = true
allow_federation = true
trusted_servers = ["matrix.org"]
address = "0.0.0.0"