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
parent de6a44d272
commit c91e9951a6
No known key found for this signature in database
GPG key ID: 3582D7B034FF964F

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>