Merge pull request #13513 from as598466/patch-1

improve nginx conf examples to mention php-fpm timeouts
This commit is contained in:
Simon L. 2025-08-26 11:45:53 +02:00 committed by GitHub
commit 53831a8815
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 0 deletions

View File

@ -173,6 +173,12 @@ server {
fastcgi_intercept_errors on;
fastcgi_request_buffering off;
# PHP-FPM 504 response timeouts
# Uncomment and increase these if facing timeout errors during large file uploads
#fastcgi_read_timeout 60s;
#fastcgi_send_timeout 60s;
#fastcgi_connect_timeout 60s;
fastcgi_max_temp_file_size 0;
}

View File

@ -172,6 +172,12 @@ server {
fastcgi_intercept_errors on;
fastcgi_request_buffering off;
# PHP-FPM 504 response timeouts
# Uncomment and increase these if facing timeout errors during large file uploads
#fastcgi_read_timeout 60s;
#fastcgi_send_timeout 60s;
#fastcgi_connect_timeout 60s;
fastcgi_max_temp_file_size 0;
}