nixos/tailscale-derper: drop unused keepalive_timeout, bump proxy_rea… (#430791) in

This commit is contained in:
Sandro
2025-08-07 17:21:26 +02:00
committed by GitHub
@@ -82,10 +82,11 @@ in
locations."/" = {
proxyPass = "http://127.0.0.1:${toString cfg.port}";
proxyWebsockets = true;
extraConfig = ''
keepalive_timeout 0;
proxy_buffering off;
'';
extraConfig = # nginx
''
proxy_buffering off;
proxy_read_timeout 3600s;
'';
};
};
};