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

Nginx Backup 报错 502 Bad Gateway

时间:2020-06-09 14:46:13      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:com   nbsp   timeout   访问   proxy   div   str   遇到   http   

也是线上遇到的问题, 假设nginx配置为

 

upstream  zed {
        server 192.168.0.1:3000 max_fails=3 fail_timeout=30s;
        server 192.168.0.2:3000 backup max_fails=3 fail_timeout=30s;
}

server {
    listen       80;
    server_name  zed.com;
    location / {
            proxy_pass http://zed/;
    }
}

 

如果 192.168.0.1:3000 和 192.168.0.1:3000 同时down掉, 且被nginx重试了3次。立马  192.168.0.1:3000 和 192.168.0.1:3000恢复的情况下,服务还会无法访问持续30s

Nginx Backup 报错 502 Bad Gateway

标签:com   nbsp   timeout   访问   proxy   div   str   遇到   http   

原文地址:https://www.cnblogs.com/restful/p/13072215.html

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