2021-01-01 11:24:09 +01:00
|
|
|
[global]
|
2022-01-09 16:44:44 +01:00
|
|
|
# The server_name is the pretty name of this server. It is used as a suffix for user
|
2021-01-01 11:24:09 +01:00
|
|
|
# and room ids. Examples: matrix.org, conduit.rs
|
2022-01-09 16:44:44 +01:00
|
|
|
|
|
|
|
# The Conduit server needs all /_matrix/ requests to be reachable at
|
|
|
|
# https://your.server.name/ on port 443 (client-server) and 8448 (federation).
|
|
|
|
|
|
|
|
# If that's not possible for you, you can create /.well-known files to redirect
|
|
|
|
# requests. See
|
2021-01-01 11:24:09 +01:00
|
|
|
# https://matrix.org/docs/spec/client_server/latest#get-well-known-matrix-client
|
2022-01-09 16:44:44 +01:00
|
|
|
# and
|
|
|
|
# https://matrix.org/docs/spec/server_server/r0.1.4#get-well-known-matrix-server
|
2021-01-01 11:24:09 +01:00
|
|
|
# for more information
|
|
|
|
|
|
|
|
# YOU NEED TO EDIT THIS
|
|
|
|
#server_name = "your.server.name"
|
|
|
|
|
2021-04-16 22:10:07 +02:00
|
|
|
# This is the only directory where Conduit will save its data
|
2021-07-30 19:27:37 +02:00
|
|
|
database_path = "/var/lib/conduit/"
|
2022-01-09 16:44:44 +01:00
|
|
|
database_backend = "rocksdb"
|
2021-01-01 11:24:09 +01:00
|
|
|
|
|
|
|
# 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
|
2022-02-02 14:07:35 +01:00
|
|
|
# Docker users: Don't change this, you'll need to map an external port to this.
|
2021-01-01 11:24:09 +01:00
|
|
|
port = 6167
|
|
|
|
|
|
|
|
# Max size for uploads
|
|
|
|
max_request_size = 20_000_000 # in bytes
|
|
|
|
|
2021-08-31 18:25:35 +02:00
|
|
|
# Enables registration. If set to false, no users can register on this server.
|
|
|
|
allow_registration = true
|
2021-01-01 11:24:09 +01:00
|
|
|
|
|
|
|
# Disable encryption, so no new encrypted rooms can be created
|
|
|
|
# Note: existing rooms will continue to work
|
2021-01-15 03:32:22 +01:00
|
|
|
#allow_encryption = false
|
2021-02-07 13:20:00 +01:00
|
|
|
#allow_federation = false
|
2021-01-01 11:24:09 +01:00
|
|
|
|
2021-02-28 12:41:03 +01:00
|
|
|
# Enable jaeger to support monitoring and troubleshooting through jaeger
|
|
|
|
#allow_jaeger = false
|
|
|
|
|
2021-05-05 12:25:37 +02:00
|
|
|
trusted_servers = ["matrix.org"]
|
|
|
|
|
2021-05-24 17:59:06 +02:00
|
|
|
#max_concurrent_requests = 100 # How many requests Conduit sends to other servers at the same time
|
2022-01-20 11:51:31 +01:00
|
|
|
#log = "info,state_res=warn,_=off,sled=off"
|
2021-01-01 11:24:09 +01:00
|
|
|
#workers = 4 # default: cpu core count * 2
|
|
|
|
|
|
|
|
address = "127.0.0.1" # This makes sure Conduit can only be reached using the reverse proxy
|
2021-09-23 09:49:52 +02:00
|
|
|
#address = "0.0.0.0" # If Conduit is running in a container, make sure the reverse proxy (ie. Traefik) can reach it.
|
2021-07-01 21:38:25 +02:00
|
|
|
|
|
|
|
proxy = "none" # more examples can be found at src/database/proxy.rs:6
|
2021-07-14 09:07:08 +02:00
|
|
|
|
|
|
|
# The total amount of memory that the database will use.
|
2021-07-30 19:27:37 +02:00
|
|
|
#db_cache_capacity_mb = 200
|