nginx负载均衡例子

Posted lisqorz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx负载均衡例子相关的知识,希望对你有一定的参考价值。

upstream demo
{
ip_hash;//客户连接后, 一直用这个IP,直到会话结束,否则,动态程序可能会在换IP后出错
server 192.168.1.1:80 weight=5 | down |backup;  
}
# weight 权重  越大访问他的机率越大
# down 宕机(有ip_hash的话才有用)
# 备份


location /{
proxy_pass http://demo/
}

以上是关于nginx负载均衡例子的主要内容,如果未能解决你的问题,请参考以下文章

nginx负载均衡例子

nginx如何做到TCP的负载均衡

nginx如何做到TCP的负载均衡

nginx负载均衡的搭建和简单例子

linux下配置nginx负载均衡例子

165Nginx1.20.1搭建负载均衡的例子