From caad1ddba98ed9b2ca53f6b9be34320fc3606ec3 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Mon, 24 Nov 2025 13:57:00 +0100 Subject: [PATCH] Revert "chore(nix): enhance Nginx proxy settings for Headscale" This reverts commit 2d0d03f84542f1009b8939d623ee6ebb4b690776. --- systems/x86_64-linux/mx/headscale.nix | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/systems/x86_64-linux/mx/headscale.nix b/systems/x86_64-linux/mx/headscale.nix index d42a5b4..b7508df 100644 --- a/systems/x86_64-linux/mx/headscale.nix +++ b/systems/x86_64-linux/mx/headscale.nix @@ -28,18 +28,6 @@ in locations."/" = { proxyPass = "http://localhost:${toString config.services.headscale.port}"; proxyWebsockets = true; - extraConfig = '' - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection $connection_upgrade; - proxy_set_header Host $server_name; - proxy_redirect http:// https://; - proxy_buffering off; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always; - ''; }; }; };