Spaces:
Sleeping
Sleeping
epii-1
commited on
Commit
·
ded27fa
1
Parent(s):
83bcfaf
222222
Browse files- nginx.conf +7 -0
nginx.conf
CHANGED
@@ -11,6 +11,13 @@ http {
|
|
11 |
sendfile on;
|
12 |
keepalive_timeout 65;
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
server {
|
15 |
listen 7860;
|
16 |
server_name localhost;
|
|
|
11 |
sendfile on;
|
12 |
keepalive_timeout 65;
|
13 |
|
14 |
+
# 重定向临时目录到 /tmp
|
15 |
+
client_body_temp_path /tmp/client_temp;
|
16 |
+
proxy_temp_path /tmp/proxy_temp;
|
17 |
+
fastcgi_temp_path /tmp/fastcgi_temp;
|
18 |
+
uwsgi_temp_path /tmp/uwsgi_temp;
|
19 |
+
scgi_temp_path /tmp/scgi_temp;
|
20 |
+
|
21 |
server {
|
22 |
listen 7860;
|
23 |
server_name localhost;
|