HaProxy 重定向到内部 URL

HaProxy 重定向到内部 URL

我有一个包含两个后端服务器的配置,我需要将 301 重定向到每个具有 HTTP 内部 URL 的服务器。很难使用 SSL,因为在该配置中我无法在报告服务器上安装 SSL。此外,我无法使用虚拟域和共享 IP 来重定向流量,因为在查看报告时报告查看器存在一些内部问题。我只需要将流量重定向到后端服务器,最好使用内部 URL,但 IP 也可以。

目前,我知道如何对一个特定主机执行此操作,但不知道如何对当前服务器执行此操作。

配置:后端的主动/被动配置。

  1. HA-Proxy 版本 2.0.29-0ubuntu1

  2. Ubuntu 20.04.5 LTS

  3. Keepalived v2.0.19

    frontend raporty
         bind 192.168.0..108:80
         bind 192.168.0.108:443 ssl crt /etc/ssl/certs/haproxy.pem
         default_backend reportserver
         option forwardfor
    
    backend reportserver
         mode http
         balance roundrobin
         option httpchk uri /reports
         http-check  expect status 401
         http-response set-header X-Server %s
         http-request redirect  code 301  location http://sql02.domain.local%[capture.req.uri]
         server   sql01  192.168.0.11:80 check check fall 5
         server   sql02  192.168.0.111:80 check check fall 5
         http-response set-header X-Server %s
    

答案1

这是通过使用 ACL 和 srv_is_up 参数来管理的。

frontend raporty
        bind 192.168.0.108:80
        bind 192.168.0.108:443 ssl crt  /etc/ssl/certs/haproxy.pem
        http-response set-header X-Server %s
        http-response set-header Host %s
        default_backend reportserver
        option forwardfor



backend reportserver
        mode http
        balance roundrobin
        option httpchk uri /reports
        http-check  expect status 401
        acl asql01 srv_is_up(reportserver/sql01)
        acl asql02 srv_is_up(reportserver/sql02)
        http-request set-header Host %s
        http-response set-header Host %s
        http-request redirect  code 301 location http://sql01.domain.local%[capture.req.uri]  if asql01
        http-request redirect  code 301 location http://sql02.domain.local%[capture.req.uri]  if asql02
        server   sql01  sql01.domain.local:80 check check fall 5
        server   sql02  sql02.domain.local:80 check check fall 5
        http-response set-header X-Server %s

相关内容