Para conseguir isso, altere a estância frontend
para o seguinte:
frontend front x.x.x.x:80
default_backend balancing
acl srv1 srv_id 1
acl srv2 srv_id 2
rspadd X-Servedby:\ srv1 if srv1
rspadd X-Servedby:\ srv2 if srv2
No entanto, uma alternativa melhor de dimensionamento seria usar cookie
na sub-rotina backend
:
backend balancing
cookie SRVNAME insert
server srv1 x.x.x.x:80 cookie srv1 check
server srv2 x.x.x.x:80 cookie srv2 check
Espero que isso ajude!