Spaces:
Build error
Build error
Update nginx.conf
Browse files- nginx.conf +5 -7
nginx.conf
CHANGED
@@ -1,14 +1,12 @@
|
|
1 |
worker_processes auto;
|
2 |
-
|
3 |
events { worker_connections 1024; }
|
4 |
|
5 |
http {
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
scgi_temp_path /tmp/nginx-scgi-temp;
|
12 |
|
13 |
server {
|
14 |
listen 7860;
|
|
|
1 |
worker_processes auto;
|
|
|
2 |
events { worker_connections 1024; }
|
3 |
|
4 |
http {
|
5 |
+
client_body_temp_path /tmp/nginx/client_body_temp;
|
6 |
+
proxy_temp_path /tmp/nginx/proxy_temp;
|
7 |
+
fastcgi_temp_path /tmp/nginx/fastcgi_temp;
|
8 |
+
uwsgi_temp_path /tmp/nginx/uwsgi_temp;
|
9 |
+
scgi_temp_path /tmp/nginx/scgi_temp;
|
|
|
10 |
|
11 |
server {
|
12 |
listen 7860;
|