使用Marathon-lb

时间:2018-03-16 22:01:51

标签: load-balancing haproxy mesos marathon dcos

我想在路径上公开 我使用HAPROXY_{n}_PATH,根据我必须使用VHHOST的文档。

当我同时使用两者时,我明白了:

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

我需要的是这样的事情:

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

0 个答案:

没有答案