jianwei233 commited on
Commit
a3ba32f
·
verified ·
1 Parent(s): 66bbf31

Update nginx.conf

Browse files
Files changed (1) hide show
  1. nginx.conf +1 -1
nginx.conf CHANGED
@@ -40,7 +40,7 @@ http {
40
  # 性能优化的upstream配置
41
  upstream backend {
42
  least_conn; # 最少连接负载均衡
43
- server 127.0.0.1:3000 max_fails=3 fail_timeout=30s;
44
  keepalive 32; # 保持的后端连接数
45
  }
46
 
 
40
  # 性能优化的upstream配置
41
  upstream backend {
42
  least_conn; # 最少连接负载均衡
43
+ server 127.0.0.1:8000 max_fails=3 fail_timeout=30s;
44
  keepalive 32; # 保持的后端连接数
45
  }
46