learnazure
learnazure

Reputation: 21

azure application gateway behind azure front door multiple websites domains ssl

Infrastructure]1

Info picture - all servers should have the same configurations and websites and ports.

The goal is that on all virtual servers in VMSS are running the different websites ( www.xxx.com , www.yyy.com , wwww.zzz.com ) The SSL termination should be done at Front Door that is clear to me.

Questions: Where should i place the public ip? What should i configure that all websites are running and avaiable for users in application pool? I don't find a tutorial which describes my infrastructure. Could someone help me in this case?

Please help me thanks.

Upvotes: 2

Views: 2084

Answers (1)

Andriy Bilous
Andriy Bilous

Reputation: 2522

Front Door is global load-balancing services which distribute traffic from your end users across your regional backends.

Load Balancers and Application Gateways are regional load-balancing services which provide the ability to distribute traffic to virtual machines (VMs) within a virtual network (VNETs) or service endpoints within a region.

https://learn.microsoft.com/en-us/azure/frontdoor/front-door-lb-with-azure-app-delivery-suite#choosing-a-global-load-balancer

Here is an example of Microsoft Azure DR architecture with Application Gateway, Front Door, Load Balancer and Traffic Manager. enter image description here

https://learn.microsoft.com/en-us/azure/frontdoor/front-door-lb-with-azure-app-delivery-suite

Considering your solution, you should configure SSL on FrontDoor and configure Application Gateway as backend.

Application Gateway should have VMSS configured as backend.

Upvotes: 1

Related Questions