如何使用 HAProxy 根据主机名转移流量?

如何使用 HAProxy 根据主机名转移流量?

我使用 HAProxy 设置了一堆应用服务器来监听其他各个端口,并取得了一些初步成功。

我现在有另一个 Web 服务器在一个端口上监听,我想对我的配置做哪些更改,以便通过主机名传输流量。

以下是当前设置,假设:

  • 我的 apache 网络服务器正在 examplecom:8001 上运行
  • 我的应用服务器 0.0.0.0:8081, 0.0.0.0:8082, 0.0.0.0:8083
global
  log 127.0.0.1 local0
  log 127.0.0.1 local1 notice
  maxconn 4096
  debug
  #quiet
  #user haproxy
  #group haproxy

defaults
  log global
  mode  http
  option  httplog
  option  dontlognull
  retries 3
  redispatch
  maxconn 2000
  contimeout  5000
  clitimeout  50000
  srvtimeout  50000

listen appservers 0.0.0.0:80
  mode http
  balance roundrobin
  option httpclose
  option forwardfor
  #option httpchk HEAD /check.txt HTTP/1.0
  server  inst1 0.0.0.0:8081 cookie server01 check inter 2000 fall  3
  server  inst2 0.0.0.0:8082 cookie server02 check inter 2000 fall  3
  server  inst3 0.0.0.0:8083 cookie server01 check inter 2000 fall  3
  server  inst4 0.0.0.0:8084 cookie server02 check inter 2000 fall  3
  capture cookie vgnvisitor= len 32

(欢迎对 ^ 设置提出任何其他评论。)

现在我想继续上面的操作,但另外,如果主机名是 myspecialtopleveldomain<dot>com,则希望将流量传输到 example<dot>com:8001

~B

答案1

以下是一个例子:

frontend http
        bind 0.0.0.0:80
        default_backend www
        # NAT static host names and static paths in other hostnames to a different backend
        acl host_static hdr_beg(host) -i static.
        acl url_static  path_beg         /static
        use_backend static if host_static or url_static

backend www
        balance roundrobin
        server  qa1 10.177.1.81:80
        server  qa2 10.177.1.45:80

backend static
        balance roundrobin
        server  media1 10.177.0.86:80

相关内容