Reputation: 4583
In my application, I have 4 AppServices (2 web app and 2 API in East US), Now I want deploy all 4 AppServices in a different region (West US) to provide high availability.
I planning to using Azure frontdoors as a load balancer and it's working fine for 1 AppService.
Problem- I have created 4 backend pools, how to create 4 different frontends? Do I need to setup custom domain first? Or Do I need to create 4 different azure frontdoors for each type of AppService?
I am using ARM templates to setup my resources.
Hight Level Architecture of my application
Upvotes: 0
Views: 1168
Reputation: 16208
You can do a number of things:
/*
)/app1/*
routes to BE-pool 1, /app2/*
to BE-pool 2, etc.). This way all can use the same frontend domain.Upvotes: 1