We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 703e0c0 commit bdfa437Copy full SHA for bdfa437
nginx.conf
@@ -24,10 +24,9 @@ http {
24
#gzip on;
25
26
upstream app {
27
- server 10.160.85.101:8888 fail_timeout=0;
28
- server 10.160.85.102:8888 fail_timeout=0;
29
- server 10.160.85.103:8888 fail_timeout=0;
30
- keepalive 16;
+ server 10.160.85.101:8888;
+ # server 10.160.85.102:8888 fail_timeout=0;
+ server 10.160.85.103:8888;
31
}
32
33
server {
@@ -49,8 +48,7 @@ http {
49
48
50
51
52
- listen 8888 default_server;
53
- listen [::]:8888 default_server;
+ listen 0.0.0.0:8888;
54
55
location /api {
56
proxy_pass http://localhost:1323;
@@ -59,9 +57,5 @@ http {
59
57
location /initialize {
60
58
61
62
-
63
- location / {
64
- root /www/data;
65
- }
66
67
0 commit comments