interfaz http de haproxy, servidor

interfaz http de haproxy, servidor

Necesito usar haproxy para escuchar el puerto 80 y reenviar la solicitud si coincide con la función para la que hice esto, pero no sé cómo puedo saber si debo usar el back-end del probador.

frontend httpfw
bind *:80
mode http
acl # what I must write here to defend a domain like test1.com
acl # what I must write here to defend a domain like test2.com

use_backend httptest1 if # how can I told to use this backend if the request comes from test1.com
use_backend httptest2 if # how can I told to use this backend if the request come from test2.com

backend httptest1
mode http
balance source
server httptest1 1.1.1.1:80 



backend httptest2
mode http
balance source
server httptest2 2.2.2.2:80 

Gracias :)

Respuesta1

Lo siguiente debería enrutar el tráfico a los respectivos backends, en el ejemplo que proporcionó:

## Look at host header
acl host_test1 hdr(host) -i test1.com
acl host_test2 hdr(host) -i test2.com

## figure out which one to use depending on the criteria above
use_backend httptest1 if host_test1
use_backend httptest2 if host_test2

información relacionada