haproxy 使用查询参数作为标头

发布于 2025-01-10 20:18:33 字数 691 浏览 1 评论 0原文

我需要从查询字符串中读取一个参数,并使用一朵石南花。我尝试了几个选项,但似乎都不起作用。这是我的示例

--- 示例查询 ---

https://www. testdomain.com/something?param1=foo&param2=bar

--ha-proxy frontend --frontend

lb_test

bind :443 ssl crt /etc/ssl/certs/mycert.pem

mode http

acl the_param2 { query -m sub -i param2= }

http-request add-header X-VALUE the_param2

use_backend lb_test 如果 the_param2

--- ha-proxy 后端 ---

后端 lb_test

balance roundrobin

server srv1 x.x.x.x:<port_number> check

提前致谢!

问候

I need to read one parameter from the query string and use is a heather. i tried a few option but none seems to work. Here is my example

--- sample query ---

https://www.testdomain.com/something?param1=foo¶m2=bar

--ha-proxy frontend --

frontend lb_test

bind :443 ssl crt /etc/ssl/certs/mycert.pem

mode http

acl the_param2 { query -m sub -i param2= }

http-request add-header X-VALUE the_param2

use_backend lb_test if the_param2

--- ha-proxy backend ---

backend lb_test

balance roundrobin

server srv1 x.x.x.x:<port_number> check

Thanks in advance!

regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

镜花水月 2025-01-17 20:18:33

您可以使用 url_param HTTP(第 7 层)获取来完成此操作,请参阅此处的文档

acl param2_exists url_param(param2) -m found
http-request set-header X-VALUE %[url_param(param2)] if param2_exists

You can do it with the url_param HTTP (layer 7) fetch, see docs here.

acl param2_exists url_param(param2) -m found
http-request set-header X-VALUE %[url_param(param2)] if param2_exists
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文