feat(nginx): use recommended proxy settings

Replaced `proxyWebsockets` with `recommendedProxySettings` for enhanced configurability and alignment with best practices. This improves maintainability and future compatibility of the nginx configuration.
This commit is contained in:
Harald Hoyer 2025-02-04 10:43:36 +01:00
parent 7e283d9266
commit 91d7c6023a

View file

@ -36,7 +36,7 @@
forceSSL = true; forceSSL = true;
locations."/" = { locations."/" = {
proxyPass = "http://127.0.0.1:8384"; proxyPass = "http://127.0.0.1:8384";
proxyWebsockets = true; recommendedProxySettings = true;
}; };
}; };
}; };