fix: headscale web proxy

This commit is contained in:
Harald Hoyer 2025-11-24 14:07:09 +01:00
parent caad1ddba9
commit 4e67949e03

View file

@ -28,6 +28,10 @@ in
locations."/" = { locations."/" = {
proxyPass = "http://localhost:${toString config.services.headscale.port}"; proxyPass = "http://localhost:${toString config.services.headscale.port}";
proxyWebsockets = true; proxyWebsockets = true;
extraConfig = ''
proxy_redirect http:// https://;
proxy_buffering off;
'';
}; };
}; };
}; };