I want to expose on a path I use HAPROXY_{n}_PATH, according to docs I have to use a VHHOST.
When I use both, I get this:
frontend marathon_http_in
bind *:80
mode http
acl host_foo_bar hdr(host) -i foo.bar.com
acl path_foo_bar path_beg /foo-bar
use_backend foo_bar if host_foo_bar path_foo_bar
What I need is something like this:
frontend marathon_http_in
bind *:80
mode http
acl host_foo_bar hdr(host) -i foo.bar.com
acl path_foo_bar path_beg /foo-bar
use_backend foo_bar if host_foo_bar or path_foo_bar