0 Ratings Rate it

A step by step tutorial on how to setup a static website hosting using Amazon Web Services S3 bucket service. A 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.

► 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!


0 Ratings Rate it

Written by admin