summaryrefslogtreecommitdiff
path: root/conduit-example.toml
diff options
context:
space:
mode:
authorTimo Kösters <timo@koesters.xyz>2022-02-12 10:29:04 +0100
committerJonas Zohren <git-pbkyr@jzohren.de>2022-02-16 15:11:46 +0100
commitde6c3312ceca9d0f9c0d2041c16a46d6b538b2a6 (patch)
treee4e91da23ed3d072c3b2fb579bffbe71fd1ee124 /conduit-example.toml
parentc66866d89092cde7c9aa834e442de1a13a1a680c (diff)
downloadconduit-de6c3312ceca9d0f9c0d2041c16a46d6b538b2a6.zip
docs: make all configs match
Diffstat (limited to 'conduit-example.toml')
-rw-r--r--conduit-example.toml18
1 files changed, 3 insertions, 15 deletions
diff --git a/conduit-example.toml b/conduit-example.toml
index c22c862..23c1844 100644
--- a/conduit-example.toml
+++ b/conduit-example.toml
@@ -16,7 +16,7 @@
#server_name = "your.server.name"
# This is the only directory where Conduit will save its data
-database_path = "/var/lib/conduit/"
+database_path = "/var/lib/matrix-conduit/"
database_backend = "rocksdb"
# The port Conduit will be running on. You need to set up a reverse proxy in
@@ -31,24 +31,12 @@ max_request_size = 20_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 = false
-#allow_federation = false
-
-# Enable jaeger to support monitoring and troubleshooting through jaeger
-#allow_jaeger = false
+allow_federation = true
trusted_servers = ["matrix.org"]
#max_concurrent_requests = 100 # How many requests Conduit sends to other servers at the same time
-#log = "info,state_res=warn,_=off,sled=off"
-#workers = 4 # default: cpu core count * 2
+#log = "info,state_res=warn,rocket=off,_=off,sled=off"
address = "127.0.0.1" # This makes sure Conduit can only be reached using the reverse proxy
#address = "0.0.0.0" # If Conduit is running in a container, make sure the reverse proxy (ie. Traefik) can reach it.
-
-proxy = "none" # more examples can be found at src/database/proxy.rs:6
-
-# The total amount of memory that the database will use.
-#db_cache_capacity_mb = 200