docs(livekit): document nginx websockets too

Signed-off-by: rooot <hey@rooot.gay>
This commit is contained in:
rooot 2026-02-16 04:39:18 +01:00 committed by Jade Ellis
parent f9e7f019ad
commit e03082480a
No known key found for this signature in database
GPG key ID: 8705A2A3EBF77BD2

View file

@ -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;
}
```
</details> </details>
<details> <details>