nixos/services: disable nginx proxy buffering

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