haproxy添加header标识

2018-11-14  本文已影响0人  一条丢了梦想的咸鱼

参考资料
https://www.haproxy.com/doc/aloha/7.0/haproxy/http_rewriting.html#add-a-header-in-the-response

这句话加在frontend块下

 mc_https on 其中mc_https是key  on是value  可以自己定义


  http-response add-header mc_https on




全局add header
 http-request add-header ORIGIN-PROTOCOL   http     #key和value

针对某一个acl做header
 http-request add-header ORIGIN-PROTOCOL   http   if is_wx  

如果443和80写在一个frontend里面的话 想对80的请求添加header
 http-request add-header ORIGIN-PROTOCOL   http   if is_wx !{ ssl_fc }

#注意  1:http-request必须要放在 redirect的条件之前
           2:请求过程中修改的header在浏览器里面是不显示 浏览器显示的是原始请求的request_header   用程序获取即可
           3: 自定义的header用大写  不要用下划线   中划线可以
上一篇 下一篇

猜你喜欢

热点阅读