|
@@ -2,7 +2,7 @@
|
|
|
|
|
|
worker_processes auto;
|
|
|
error_log /var/log/nginx/error.log;
|
|
|
-pid /run/nginx.pid;
|
|
|
+pid /tmp/nginx.pid;
|
|
|
|
|
|
# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
|
|
|
include /usr/share/nginx/modules/*.conf;
|
|
@@ -17,6 +17,12 @@ http {
|
|
|
'' close;
|
|
|
}
|
|
|
|
|
|
+ client_body_temp_path /tmp/client_temp;
|
|
|
+ proxy_temp_path /tmp/proxy_temp_path;
|
|
|
+ fastcgi_temp_path /tmp/fastcgi_temp;
|
|
|
+ uwsgi_temp_path /tmp/uwsgi_temp;
|
|
|
+ scgi_temp_path /tmp/scgi_temp;
|
|
|
+
|
|
|
# events {
|
|
|
# worker_connections 1000;
|
|
|
# }
|