Create High Availablity Architecture with AWS-CLI

We will go through step by step process of building a high speed architecture of aws. For instance, we have created a website hosted it using AWS. Now, it is stored in our region let say, Mumbai. But, if someone from America wants to access it, then it has to travel all the distance through the internet. Majorly effecting the speed of loading of our website. If it contains multiple medias, the latency will be higher. So, to overcome this a concept called content delivery network(CDN) is used. In simple terms, it means that creating a cache for global network in multiple regions. In aws this is achieved by a service called cloudfront. To see its working we must have done few things- Web Server is configured in our EC2 instance . The folder which contains our website must be mounted on an ebs volume of aws ec2 . The static objects or media must be stored in s3 of aws . In our case the website that we are launching is Here we are using the url of s3 to acess this ima...