nginx 负载均衡proxy 配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 负载均衡proxy 配置相关的知识,希望对你有一定的参考价值。
在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 配置的主要内容,如果未能解决你的问题,请参考以下文章