Azure Application Gateway with Application Support

The requirement that I have is

I want to do a redirect as follows. I have several applications for applications that will work and based on the URL I want to redirect to the correct one.

Something like that -

test.com/v1 -> app service appv1.com test.com/v2 -> app service appv2.com test.com/v3 -> app service appv3.com

Is azure app gateway the right choice for this given that it supports URL mapping.

Although, I'm not sure if the application gateway for the application service is working? Is the public IP address of the application stationary? If necessary for configuration with application gateway

+5
source share
2 answers

At a time when Application Gateway only supports a few sites based on different host names / FQDNs. I do not know how to add multiple sites with different paths / routes. Also check

0
source

You can route traffic to different backend pools (including virtual machines and Azure App Services) through URL paths using path-based rules - https://docs.microsoft.com/en-us/azure/application-gateway/application -gateway-create-url-route-portal .

This will allow you to use a β€œstatic” root domain (which you might want to acquire an SSL certificate), and traffic traffic along the path after '/'.

0
source

Source: https://habr.com/ru/post/1259789/


All Articles