Necesito equilibrar la carga entre varios servidores en ejecución con diferentes nombres de host. No puedo configurar el mismo host virtual en cada uno.
¿Es posible tener solo una configuración de escucha con varios servidores y hacer que las Verificaciones de estado apliquen la http-send-name-header Host
directiva? Estoy usando HAProxy 1.5.
Se me ocurrió este haproxy.cfg que funciona, como puede ver, tuve que establecer un nombre de host diferente para cada verificación de salud ya que la verificación de salud ignora el http-send-name-header Host
. Hubiera preferido usar variables u otros métodos y mantener las cosas más concisas.
global
log 127.0.0.1 local0 notice
maxconn 2000
user haproxy
group haproxy
defaults
log global
mode http
option httplog
option dontlognull
retries 3
option redispatch
timeout connect 5000
timeout client 10000
timeout server 10000
stats enable
stats uri /haproxy?stats
stats refresh 5s
balance roundrobin
option httpclose
listen inbound :80
option httpchk HEAD / HTTP/1.1\r\n
server instance1 127.0.0.101 check inter 3000 fall 1 rise 1
server instance2 127.0.0.102 check inter 3000 fall 1 rise 1
listen instance1 127.0.0.101:80
option forwardfor
http-send-name-header Host
option httpchk HEAD / HTTP/1.1\r\nHost:\ www.example.com
server www.example.com www.example.com:80 check inter 5000 fall 3 rise 2
listen instance2 127.0.0.102:80
option forwardfor
http-send-name-header Host
option httpchk HEAD / HTTP/1.1\r\nHost:\ www.bing.com
server www.bing.com www.bing.com:80 check inter 5000 fall 3 rise 2
example.heroku.com