We have 2 domains that point to our single Zuul ELB. Both sites use a lot of the same services so although our production environment will be setup a little different right now we only have the one Zuul ELB.
How can we route the same path to different services based on the domain name?
I would like to end up with something like this:
zuul:
host: http://a-zuul-host.elb.amazonaws.com:80
ignoredServices: '*'
routes:
app1:
path: /
domain: app1.com
serviceId: APP_1_SERVICE
app2:
path: /
domain: app2.com
serviceId: APP_2_SERVICE
Is this even possible or would I be required to setup another zuul instance?