HAProxy 如何设置端口来获取请求并使用 haproxy 的 ip 而不是客户端 ip 将它们发送到另一台服务器

问题描述 投票:0回答:1

我可以让 haproxy 将请求(GET PUT POST)重定向到特定服务器并使用 haproxy 的 ip 发回响应吗?

我有一个客户端,只允许来自专用 IP 列表的请求,并且需要不仅能够从 haproxy 服务器(允许哪个 ip)发送请求,还需要能够从其他工作站/应用程序发送请求

这样的工作似乎不起作用,我对 haproxy 的了解很差

frontend octo_front
   bind *:3090
   default_backend octo_back

backend octo_back
   server octouz https://needed.url%[capture.req.uri] check
port haproxy
1个回答
0
投票

更多阅读文档会有所帮助 这是对我有用的配置

frontend sandbox_octo_front
    bind *:3099
    option forwardfor
    default_backend octo_back

backend sandbox_octo_back
    mode http 
    option forwardfor
    http-request replace-header Host .* needed.url 
    server octouz needed.url:443 ssl verify none
© www.soinside.com 2019 - 2024. All rights reserved.