proxy websockets

This commit is contained in:
Vinzenz Schroeter 2026-01-04 20:57:27 +01:00 committed by müde
parent eea0a072f2
commit b3166d967f

View file

@ -18,8 +18,9 @@ in
nginx.virtualHosts."uplink.darkest.space" = { nginx.virtualHosts."uplink.darkest.space" = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;
locations = { locations."/" = {
"/".proxyPass = "http://localhost:${builtins.toString headscale-port}"; proxyPass = "http://localhost:${builtins.toString headscale-port}";
proxyWebsockets = true;
}; };
}; };
}; };