diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 5d16e57..2f210c4 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -1,6 +1,6 @@ user nginx; worker_processes auto; -pid /var/run/nginx.pid; +pid /tmp/nginx.pid; events { worker_connections 1024; } @@ -9,6 +9,12 @@ http { tcp_nopush on; tcp_nodelay on; + client_body_temp_path /tmp/client_temp; + proxy_temp_path /tmp/proxy_temp; + fastcgi_temp_path /tmp/fastcgi_temp; + uwsgi_temp_path /tmp/uwsgi_temp; + scgi_temp_path /tmp/scgi_temp; + # health server { listen 8090;