Host a Static WebSite using S3 bucket and CloudFront AWS services
Below task have to execute for hosting the website. Register a Domain on Route 53 Create an S3 Bucket Upload to S3 Create a CloudFront Distribution Point Domain to CloudFront in Route 53 Redirect Bare Domain to WWW Enable HTTPS Register a Domain :- AWS is a domain registrar, and in order to register a domain with AWS, you need to use the service called "Route 53". Go to the AWS Console and click on "Route 53", under the "Networking" section. Then go to the Domain Registration section, click on the "Register Domain" button, type in the domain you want to register, Once you've found an available domain that you like, Purchased that domain. Create a bucket :- AWS cli command aws s3api create-bucket --bucket my-bucket --region us-east-1 The following command creates a bucket named my-bucket in the eu-west-1 region. Regions outside of us-east-1 require the appropriate LocationConstrai...