1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2025-06-27 16:35:59 +00:00
This commit is contained in:
mikoto 2024-06-10 18:22:20 +02:00 committed by avdb13
parent 66c4aefa0c
commit 31102a43c5
2 changed files with 6 additions and 3 deletions

View file

@ -42,7 +42,7 @@ allow_registration = true
# an account. YOU NEED TO EDIT THIS.
# - Insert a password that users will have to enter on registration
# - Start the line with '#' to remove the condition
# registration_token = ""
registration_token = ""
allow_check_for_updates = true
allow_federation = true
@ -56,9 +56,11 @@ enable_lightning_bolt = true
# servers.)
trusted_servers = ["matrix.org"]
#max_concurrent_requests = 100 # How many requests Conduit sends to other servers at the same time
# Rooms listed here will be joined automatically after registration.
# See examples for accepted identifiers.
#join_by_default = ["#lounge:conduit.rs", "#lounge", "lounge", "!abc123:conduit.rs", "!abc123"]
join_by_default = ["home", "!oN47OFomZSVRQVCLLw"]
#max_concurrent_requests = 100 # How many requests Conduit sends to other servers at the same time
# Controls the log verbosity. See also [here][0].
#

View file

@ -44,6 +44,7 @@ The `global` section contains the following fields:
| `allow_room_creation` | `boolean` | Allow users to create rooms | `true` |
| `allow_unstable_room_versions` | `boolean` | Allow users to create and join rooms with unstable versions | `true` |
| `default_room_version` | `string` | The default room version (`"6"`-`"10"`)| `"10"` |
| `join_by_default` | `array` | Room aliases and IDs that will be joined by default at registration | N/A |
| `allow_jaeger` | `boolean` | Allow Jaeger tracing | `false` |
| `tracing_flame` | `boolean` | Enable flame tracing | `false` |
| `proxy` | `table` | See the [Proxy configuration](#proxy) | N/A |