AWS Static Website Hosting on AWS S3 Bucket using Route 53



A step by step tutorial on how to setup a static website hosting using Amazon Web Services S3 bucket service using AWS Route 53. AWS S3 is highly cost effective, highly scalable solution for any static website.

JSON Permission Code: Modify “arn:s3:::example-bucket/*”
{
“Version”: “2012-10-17”,
“Statement”: [
{
“Sid”: “PublicReadGetObject”,
“Effect”: “Allow”,
“Principal”: “*”,
“Action”: [
“s3:GetObject”
],
“Resource”: [
“arn:aws:s3:::example-bucket/*”
]
}
]
}

Thank you for watching!!

Please subscribe to get updates on new videos 🙂

â–º What is S3?
S3 stands for Simple Storage Service, an online storage service that allows you to store unlimited files in the cloud.

â–º What is AWS Route 53?
Amazon Route 53 is a highly available and scalable cloud Domain Name System (DNS) web service. It is designed to give developers and businesses an extremely reliable and cost effective way to route end users to Internet applications by translating names like www.example.com into the numeric IP addresses like 192.0.2.1 that computers use to connect to each other. Amazon Route 53 is fully compliant with IPv6 as well.

â–º Why would I use S3 instead of a regular host?
Regular shared hosting providers charge you a fixed amount every month. That’s regardless of the amount of files you store or the amount of visitors you get. Most cheaper webhosting companies also don’t cope well with high traffic websites. Suddenly got featured on Reddit or Hacker News? A regular hosting provider might suspend your account for all the traffic! With S3 you only pay for what you use and it’s highly scalable.

â–º What does it cost?
To give you an example of cost: when my blog receiver 1000 visitors per month I was paying just 6 cents to host it!

#cloudguru

Comments are closed.