abubasith86 commited on
Commit
4f6a7c5
·
verified ·
1 Parent(s): 0acacdf

Update nginx.conf

Browse files
Files changed (1) hide show
  1. 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
- # Log to stdout/stderr—no file system permissions needed
12
- access_log /dev/stdout main;
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
  }