28 lines
642 B
TOML
28 lines
642 B
TOML
[global]
|
|
server_name = "monolith.mac"
|
|
|
|
# This is the only directory where Conduit will save its data
|
|
database_path = "/mnt/"
|
|
|
|
port = 6167
|
|
|
|
max_request_size = 20_000_000 # in bytes
|
|
|
|
allow_registration = true
|
|
|
|
allow_encryption = false
|
|
allow_federation = false
|
|
|
|
trusted_servers = ["matrix.org", "synapse.home.blapointe.com"]
|
|
|
|
max_concurrent_requests = 10
|
|
|
|
#log = "info,state_res=warn,rocket=off,_=off,sled=off"
|
|
#workers = 4 # default: cpu core count * 2
|
|
|
|
address = "0.0.0.0" # This makes sure Conduit can only be reached using the reverse proxy
|
|
|
|
proxy = "none" # more examples can be found at src/database/proxy.rs:6
|
|
|
|
db_cache_capacity_mb = 100
|