1.90版本加入tcp的代理

在http标签中加入(weight权重)
upstream backend {
ip_hash; #默认轮训,但也可以加入会话保持ip_hash;
server 192.168.56.100:8080 weight=1 max_fails=3 fail_timeout=30s;
server 192.168.56.20:80 weight=1 max_fails=3 fail_timeout=30s;
}

在server标签中加入
location / {
proxy_pass http://backend;
}

测试配置文件
nginx -t

优雅重启
nginx -s reload