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
+8
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>