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

Nginx基础08:Nginx负载均衡

时间:2020-06-08 00:27:05      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:连接超时   服务器   src   相对路径   代理服务器   serve   bsp   服务器ip   ima   

技术图片

 

 

http {

  #webapp  代理服务器,名称myapp自定义
  upstream myapp {

     #server 访问服务器IP:端口;weight 权重,两个都设置1表示访问量平分;max_fails 失败次数,如果失败次数>值,则表示该节点已宕机;fail_timeout 连接超时时间
     server 192.168.1.171:8080 weight=1 max_fails=2 fail_timeout=30s;
     server 192.168.1.172:8080 weight=1 max_fails=2 fail_timeout=30s;
  }  

  #返回的相应文件地址
  location / {
  #设置客户端真实ip地址
  proxy_set_header X-real-ip $remote_addr;
  #负载均衡反向代理
  proxy_pass http://myapp;

  #返回根路径地址(相对路径:相对于/usr/local/nginx/)
  root html;
  #默认访问文件
  index index.html index.htm;
  }

 

}

 

Nginx基础08:Nginx负载均衡

标签:连接超时   服务器   src   相对路径   代理服务器   serve   bsp   服务器ip   ima   

原文地址:https://www.cnblogs.com/chai-blogs/p/13063000.html

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