当前位置:  开发笔记 > 运维 > 正文

在HAProxy中,如何将所有域重定向到HTTPS(某些域除外)?

如何解决《在HAProxy中,如何将所有域重定向到HTTPS(某些域除外)?》经验,为你挑选了0个好方法。

我的所有前端服务器都在使用HAProxy作为负载均衡器。它将所有传入的请求重定向到https:

frontend front_http
 mode http
 redirect scheme https if !{ ssl_fc }  
 maxconn 10000
 bind 0.0.0.0:80
 reqadd X-Forwarded-Proto:\ http
 default_backend back_easycreadoc

frontend front_https
 mode http
 maxconn 10000
 bind 0.0.0.0:443 ssl crt /etc/haproxy/ssl.crt
 reqadd X-Forwarded-Proto:\ https
 default_backend back_easycreadoc

我们将添加一些我们没有证书的域(我们不拥有这些域,我们的客户拥有它们)。如何让连接在端口80上通过而不将其重定向到https(仅适用于这些域)?

推荐阅读
wangtao
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有