mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-22 12:41:05 +01:00
Raised limits
This commit is contained in:
parent
709c741a5b
commit
15090dd75d
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user