Spaces:
Build error
Build error
Update nginx.conf
Browse files- nginx.conf +7 -1
nginx.conf
CHANGED
@@ -1,8 +1,14 @@
|
|
1 |
worker_processes auto;
|
|
|
2 |
events { worker_connections 1024; }
|
3 |
|
4 |
http {
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
server {
|
8 |
listen 7860;
|
|
|
1 |
worker_processes auto;
|
2 |
+
|
3 |
events { worker_connections 1024; }
|
4 |
|
5 |
http {
|
6 |
+
# Redirect nginx temp file paths to /tmp
|
7 |
+
client_body_temp_path /tmp/nginx-client-temp;
|
8 |
+
proxy_temp_path /tmp/nginx-proxy-temp;
|
9 |
+
fastcgi_temp_path /tmp/nginx-fastcgi-temp;
|
10 |
+
uwsgi_temp_path /tmp/nginx-uwsgi-temp;
|
11 |
+
scgi_temp_path /tmp/nginx-scgi-temp;
|
12 |
|
13 |
server {
|
14 |
listen 7860;
|