diff --git a/docs/calls.mdx b/docs/calls.mdx index 6717217be..bf5b65fcd 100644 --- a/docs/calls.mdx +++ b/docs/calls.mdx @@ -10,4 +10,4 @@ # Calls For either one to work correctly, you have to do some additional setup. - For legacy calls to work, you need to set up a TURN/STUN server. [Read the TURN guide for tips on how to set up coturn](./calls/turn.mdx) -- For MatrixRTC / Element Call to work, you have to set up the LiveKit backend (foci). LiveKit also uses TURN/STUN to increase reliability - you can setup its built-in TURN server, or integrate with an existing one. [Read the LiveKit guide](./calls/livekit.mdx) +- For MatrixRTC / Element Call to work, you have to set up the LiveKit backend (foci). LiveKit also uses TURN/STUN to increase reliability - you can set up its built-in TURN server, or integrate with an existing one. [Read the LiveKit guide](./calls/livekit.mdx) diff --git a/docs/calls/livekit.mdx b/docs/calls/livekit.mdx index e8e71fda6..e8f8936c9 100644 --- a/docs/calls/livekit.mdx +++ b/docs/calls/livekit.mdx @@ -333,7 +333,17 @@ ### Docker loopback networking issues ### Workaround for non-federating servers -When deploying on servers with federation disabled (`allow_federation = false`), LiveKit will fail as it can't fetch the required [OpenID endpoint](https://spec.matrix.org/v1.17/server-server-api/#get_matrixfederationv1openiduserinfo) via federation paths. You can find a workaround for this limitation [here](https://forgejo.ellis.link/continuwuation/continuwuity/issues/1440). +When deploying on servers with federation disabled (`allow_federation = false`), LiveKit will fail as it can't fetch the required [OpenID endpoint](https://spec.matrix.org/v1.17/server-server-api/#get_matrixfederationv1openiduserinfo) via federation paths. + +As a workaround, you can enable federation, but forbid all remote servers via the following config parameters: + +```toml +### in your continuwuity.toml file ### +allow_federation = true +forbidden_remote_server_names = [".*"] +``` + +Subscribe to issue [!1440](https://forgejo.ellis.link/continuwuation/continuwuity/issues/1440) for future updates on this matter. ## Related Documentation