美文网首页
haproxy添加header标识

haproxy添加header标识

作者: 一条丢了梦想的咸鱼 | 来源:发表于2018-11-14 18:03 被阅读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用大写  不要用下划线   中划线可以

相关文章

网友评论

      本文标题:haproxy添加header标识

      本文链接:https://www.haomeiwen.com/subject/ikajfqtx.html