[vpn] disable proxy_buffer
All checks were successful
Evaluate Hydra Jobs / eval-hydra-jobs (push) Successful in 4m5s

url http://10.100.0.101:80/css/variables.css only returns half the file
hopefully this fixes it
This commit is contained in:
2025-01-16 16:26:23 +01:00
parent c78eb9cbc1
commit c7b02b9366

View File

@@ -31,7 +31,15 @@ with lib;
services.nginx = {
enable = true;
virtualHosts."docs.malobeo.org" = {
locations."/".proxyPass = "http://10.100.0.101";
locations."/" = {
proxyPass = "http://10.100.0.101";
extraConfig = ''
proxy_buffering off;
proxy_cache off;
proxy_http_version 1.1;
'';
};
};
};