From 03e7b1ad7937302c2b11402b218109d252f1dc9a Mon Sep 17 00:00:00 2001 From: Emanuele Rocca Date: Fri, 4 Jul 2025 19:59:32 +0200 Subject: [PATCH] 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. --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 145c2c48..816fc006 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -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"` |