Update nginx-app, disabling fastcgi_buffer, gzip configuration and default timeout 600s
This commit is contained in:
parent
8cf481d733
commit
d3b84db0e9
@ -3,9 +3,14 @@ server {
|
|||||||
listen [::]:80 default_server;
|
listen [::]:80 default_server;
|
||||||
|
|
||||||
access_log off;
|
access_log off;
|
||||||
client_max_body_size 10m;
|
client_max_body_size 64m;
|
||||||
fastcgi_buffers 16 16k;
|
error_log /dev/stdout info;
|
||||||
fastcgi_buffer_size 16k;
|
fastcgi_buffering off;
|
||||||
|
fastcgi_request_buffering off;
|
||||||
|
gzip_vary on;
|
||||||
|
gzip_min_length 10240;
|
||||||
|
gzip_proxied expired no-cache no-store private auth;
|
||||||
|
gzip_types text/plain text/css application/javascript;
|
||||||
index index.php index.html;
|
index index.php index.html;
|
||||||
root /var/www/html/public;
|
root /var/www/html/public;
|
||||||
server_tokens off;
|
server_tokens off;
|
||||||
@ -24,11 +29,15 @@ server {
|
|||||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||||
fastcgi_pass 127.0.0.1:9000;
|
fastcgi_pass 127.0.0.1:9000;
|
||||||
fastcgi_index index.php;
|
fastcgi_index index.php;
|
||||||
|
|
||||||
include fastcgi_params;
|
include fastcgi_params;
|
||||||
|
|
||||||
|
fastcgi_param HTTPS $my_https;
|
||||||
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||||
fastcgi_param SERVER_NAME $host;
|
fastcgi_param SERVER_NAME $host;
|
||||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
||||||
fastcgi_param HTTPS $my_https;
|
fastcgi_read_timeout 600s;
|
||||||
fastcgi_param PHP_ADMIN_VALUE "sendmail_path=/usr/sbin/sendmail -i -t";
|
fastcgi_send_timeout 600s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user