feat(nginx): enable websocket support in reverse proxy

Enabled `proxyWebsockets` for the nginx reverse proxy configuration to support websocket connections. This ensures compatibility with services requiring websocket communication.
This commit is contained in:
Harald Hoyer 2025-02-04 10:24:41 +01:00
parent 27d5373e2d
commit 8748f2b80b

View file

@ -27,6 +27,7 @@
forceSSL = true; forceSSL = true;
locations."/" = { locations."/" = {
proxyPass = "http://127.0.0.1:${toString config.services.open-webui.port}"; proxyPass = "http://127.0.0.1:${toString config.services.open-webui.port}";
proxyWebsockets = true;
}; };
}; };
}; };