Set longer timeouts; Use production docker nextcloud

This commit is contained in:
Hattshire 2024-03-07 22:26:41 +00:00
parent 0f5caed42b
commit b47e006c9c
4 changed files with 32 additions and 11 deletions

View file

@ -45,8 +45,13 @@ http {
#add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;" always;
# set max upload size
client_max_body_size 512M;
client_max_body_size 1G;
# adjust buffering
client_body_temp_path /tmp/ngx 1 2;
proxy_buffering off;
fastcgi_buffers 64 4K;
fastcgi_request_buffering off;
# Enable gzip but do not remove ETag headers
gzip on;
@ -141,6 +146,10 @@ http {
fastcgi_param PATH_INFO $path_info;
#fastcgi_param HTTPS on;
fastcgi_read_timeout 3600;
proxy_read_timeout 3600;
proxy_connect_timeout 3600;
fastcgi_param modHeadersAvailable true; # Avoid sending the security headers twice
fastcgi_param front_controller_active true; # Enable pretty urls
fastcgi_pass php-handler;