Spaces:
Sleeping
Sleeping
Update nginx.conf
Browse files- nginx.conf +3 -4
nginx.conf
CHANGED
|
@@ -8,9 +8,8 @@ http {
|
|
| 8 |
uwsgi_temp_path /tmp/uwsgi_temp;
|
| 9 |
scgi_temp_path /tmp/scgi_temp;
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
error_log stderr notice;
|
| 14 |
|
| 15 |
server {
|
| 16 |
listen 7860;
|
|
@@ -23,9 +22,9 @@ http {
|
|
| 23 |
|
| 24 |
location /ws/ {
|
| 25 |
proxy_pass http://127.0.0.1:8888;
|
| 26 |
-
proxy_http_version 1.1;
|
| 27 |
proxy_set_header Upgrade $http_upgrade;
|
| 28 |
proxy_set_header Connection "Upgrade";
|
|
|
|
| 29 |
}
|
| 30 |
}
|
| 31 |
}
|
|
|
|
| 8 |
uwsgi_temp_path /tmp/uwsgi_temp;
|
| 9 |
scgi_temp_path /tmp/scgi_temp;
|
| 10 |
|
| 11 |
+
access_log /dev/stdout combined;
|
| 12 |
+
error_log stderr notice;
|
|
|
|
| 13 |
|
| 14 |
server {
|
| 15 |
listen 7860;
|
|
|
|
| 22 |
|
| 23 |
location /ws/ {
|
| 24 |
proxy_pass http://127.0.0.1:8888;
|
|
|
|
| 25 |
proxy_set_header Upgrade $http_upgrade;
|
| 26 |
proxy_set_header Connection "Upgrade";
|
| 27 |
+
proxy_http_version 1.1;
|
| 28 |
}
|
| 29 |
}
|
| 30 |
}
|