Posts

Showing posts from November, 2020

Deployment of High Availability Architecture with AWS CLI

Image
  Hello Connections !!! ✨ Hope you all are safe and doing well ... In my previous article of AWS CLI , I had demonstrated as to how we can use high level aws commands from our terminal and use various AWS services .... ( like launching EC2 instances and creating and attaching EBS volumes, attaching it,  ) In this article ... We will continue our journey as to how we can create a high availability architecture using the concept of Content Delivery Network ( CDN ) via a service of AWS known as CloudFront using AWS CLI . Here is the list of things to be configured and deployed : The architecture includes-  - Webserver configured on EC2 Instance - Document Root(/var/www/html) made persistent by mounting on EBS Block Device. - Static objects used in code such as pictures stored in S3 - Setting up Content Delivery Network using CloudFront and using the origin domain as S3 bucket.  - Finally place the Cloud Front URL on the webapp code for security and low latency. !!! Let'...