码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx-3:配置反向代理

时间:2018-01-11 11:21:54      阅读:138      评论:0      收藏:0      [点我收藏+]

标签: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

Nginx-3:配置反向代理

标签:location   ash   backend   pass   ofo   ati   load   server   配置文件   

原文地址:http://blog.51cto.com/13491150/2059714

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!