标签:location ash backend pass ofo ati load server 配置文件
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
标签:location ash backend pass ofo ati load server 配置文件
原文地址:http://blog.51cto.com/13491150/2059714