Коллеги, может кому пригодится
данный конфиг позволяет заходит на сайты auth.domain.com, auth-dev.domain.com, auth-stage.domain.com и еще по пути /test , этих доменов.
acl is_auth hdr_end(host) -i auth.domain.com
acl is_auth_dev hdr_end(host) -i auth-dev.domain.com
acl is_auth_stage hdr_end(host) -i auth-stage.domain.com
acl test_path path_beg -i /test
use_backend backend-front-dev if is_auth_dev test_path
use_backend backend-front-stage if is_auth_stage test_path
use_backend backend-front-auth if is_auth test_path
use_backend auth if is_auth
use_backend auth_dev if is_auth_dev
use_backend auth_stage if is_auth_stage
Правила должны идти по смыслу как в фаерволлах, что выше то и срабатывает, как то так.