Raised limits

This commit is contained in:
Kevin Veen-Birkenbach 2023-12-06 13:44:57 +01:00
parent 06013413e9
commit b53ff57f8a

View File

@ -7,6 +7,7 @@ server {
error_log stderr debug; error_log stderr debug;
root /var/www/html; root /var/www/html;
index index.html index.php; index index.html index.php;
worker_processes auto;
location / { location / {
try_files $uri $uri/ /index.php?$args; try_files $uri $uri/ /index.php?$args;
@ -29,6 +30,13 @@ server {
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_INFO $fastcgi_path_info;
# client timeout
keepalive_timeout 60s;
client_header_timeout 60s;
client_body_timeout 60s;
send_timeout 300s;
reset_timedout_connection on;
# proxy timeouts # proxy timeouts
proxy_connect_timeout 300s; proxy_connect_timeout 300s;
proxy_send_timeout 300s; proxy_send_timeout 300s;