Geo Redundant Path Based Routing
We may have built an application but never thought about distributing it at scale, let alone globally. So, in this post, I will be showing you how we can leverage Azure Services like Azure Traffic Manager, Azure Load Balancer, Application gateway, and Azure Front Door to scale our distribution to people around the globe.
- Azure Virtual Machine
- Azure Virtual Machine Scale Sets
- Azure Load Balancer
- Azure Traffic Manager
- Azure Application Gateway
- Azure Front Door
As the VMSS template couldn't be exporeted, there is no ARM template for it. I have written all the replication steps on my blog post
- Command for VM
#!/bin/bash
sudo apt update -y
sudo apt install apache2 -y
- Command for VMSS
#!/bin/bash
sudo apt update -y
sudo apt install apache2 -y
echo "<html><h2>This is images farmed page</h2></html>" > images.html
sudo cp images.html /var/www/html/