From 91d7c6023aa47742cbf4e68b667ac4577c6b0804 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Tue, 4 Feb 2025 10:43:36 +0100 Subject: [PATCH] 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. --- systems/x86_64-linux/sgx/nginx.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/x86_64-linux/sgx/nginx.nix b/systems/x86_64-linux/sgx/nginx.nix index 8299c47..6d86d9f 100644 --- a/systems/x86_64-linux/sgx/nginx.nix +++ b/systems/x86_64-linux/sgx/nginx.nix @@ -36,7 +36,7 @@ forceSSL = true; locations."/" = { proxyPass = "http://127.0.0.1:8384"; - proxyWebsockets = true; + recommendedProxySettings = true; }; }; };