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

nginx 负载均衡proxy 配置

时间:2016-08-30 22:56:01      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:nginx 负载均衡

在http模块 加入

upstream fuzai{
server 服务器ip;      #有端口的话 ip:端口 默认80端口可以不写
}

 

在server 模块需要负载的location加入

location / {
proxy_pass http://dis;

proxy_set_header Host $host;

proxy_set_header X-Real-IP $remote_addr; 

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

…………………

}


本文出自 “jinchuang” 博客,请务必保留此出处http://jinchuang.blog.51cto.com/8690689/1844466

nginx 负载均衡proxy 配置

标签:nginx 负载均衡

原文地址:http://jinchuang.blog.51cto.com/8690689/1844466

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