From e03082480afd818615445861b35687542fe843bd Mon Sep 17 00:00:00 2001 From: rooot Date: Mon, 16 Feb 2026 04:39:18 +0100 Subject: [PATCH] docs(livekit): document nginx websockets too Signed-off-by: rooot --- docs/calls/livekit.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/calls/livekit.mdx b/docs/calls/livekit.mdx index 419c5643..84768d52 100644 --- a/docs/calls/livekit.mdx +++ b/docs/calls/livekit.mdx @@ -176,6 +176,14 @@ By default, all routes should be forwarded to Livekit with the exception of the } } ``` + + Note that for websockets to work, you need to have this somewhere outside your server block: + ``` + map $http_upgrade $connection_upgrade { + default upgrade; + '' close; + } + ```