This commit is contained in:
Marcel Schilling 2025-10-23 08:47:57 +02:00 committed by GitHub
commit ce4462bf82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

View File

@ -56,6 +56,13 @@ server {
client_body_timeout 300s;
fastcgi_buffers 64 4K;
# avoid 502 at root URL due to too large header response
proxy_busy_buffers_size 512k;
proxy_buffers 4 512k;
proxy_buffer_size 256k;
fastcgi_buffer_size 64k;
fastcgi_busy_buffers_size 64k;
# Proxy and client response timeouts
# Uncomment an increase these if facing timeout errors during large file uploads
#proxy_connect_timeout 60s;

View File

@ -82,6 +82,13 @@ server {
client_body_timeout 300s;
fastcgi_buffers 64 4K;
# avoid 502 at root URL due to too large header response
proxy_busy_buffers_size 512k;
proxy_buffers 4 512k;
proxy_buffer_size 256k;
fastcgi_buffer_size 64k;
fastcgi_busy_buffers_size 64k;
# Proxy and client response timeouts
# Uncomment an increase these if facing timeout errors during large file uploads
#proxy_connect_timeout 60s;