[nextcloud] adjust nginx for large fileuploads
All checks were successful
Check flake syntax / flake-check (push) Successful in 11m51s

This commit is contained in:
2025-12-22 19:37:13 +01:00
parent b3e93349d1
commit 9899889924
3 changed files with 9 additions and 0 deletions

View File

@@ -46,6 +46,9 @@ with lib;
extraConfig = ''
proxy_set_header Host $host;
client_max_body_size ${inputs.self.nixosConfigurations.nextcloud.config.services.nextcloud.maxUploadSize};
client_body_timeout 3600s;
send_timeout 3600s;
fastcgi_buffers 64 4K;
'';
};
};