1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2025-08-06 17:40:59 +00:00

docs/configuration.md: allow_federation defaults to false

It seems that allow_federation does not default to true. Starting conduit
without the option I get the following error:

ERROR conduit::utils::error: BadConfig: Federation is disabled.
This commit is contained in:
Emanuele Rocca 2025-07-04 19:59:32 +02:00
parent a87f4b6171
commit 03e7b1ad79

View file

@ -42,7 +42,7 @@ The `global` section contains the following fields:
| `allow_registration` | `boolean` | Opens your homeserver to public registration | `false` |
| `registration_token` | `string` | The token users need to have when registering to your homeserver | N/A |
| `allow_encryption` | `boolean` | Allow users to enable encryption in their rooms | `true` |
| `allow_federation` | `boolean` | Allow federation with other servers | `true` |
| `allow_federation` | `boolean` | Allow federation with other servers | `false` |
| `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"` |