nixos/services: disable nginx proxy buffering

This commit is contained in:
2026-05-04 04:55:40 +02:00
parent a18a871eb3
commit e0bd689d4f
+5
View File
@@ -15,6 +15,11 @@ let
mkProxy = port: { mkProxy = port: {
proxyPass = "http://127.0.0.1:${toString port}/"; proxyPass = "http://127.0.0.1:${toString port}/";
extraConfig = ''
proxy_buffering off;
proxy_request_buffering off;
'';
}; };
in in
{ {