I have multiple sites hosted on the same machine in Azure on different ports:
contoso.com:8000
contoso.com:8001
contoso.com:8002
contoso.com:8003
and single sites hosted on separate machines:
foo.com:8000
foo2.com:8000
I would like to address these by different URLs and different subdomains using a reverse proxy;
w1.fabrikam.com/I1 -> contoso.com:8000
w1.fabrikam.com/I2 -> contoso.com:8001
w2.fabrikam.com -> foo.com:8000
w3.fabrikam.com -> foo2.com:8000
There is a similar post to this that was answered but used subdomains only. Is it possible to use subdomains as well as URL rules with application gateway?