PROM_PG / nginx.conf
SatCat's picture
Update nginx.conf
6610913 verified
raw
history blame contribute delete
390 Bytes
worker_processes 1;
events {
worker_connections 1024;
}
http {
include /etc/nginx/http.d/*.conf;
access_log /dev/null;
# error_log /dev/null;
client_body_temp_path /var/nginx/tmp/client_body 1 2;
proxy_temp_path /var/nginx/tmp/proxy;
fastcgi_temp_path /var/nginx/tmp/fastcgi;
uwsgi_temp_path /var/nginx/tmp/uwsgi;
scgi_temp_path /var/nginx/tmp/scgi;
}