Play Video

How to create a website using Amazon S3 and GoDaddy (step by step)

In this tutorial, we look at how to create/host a website using Amazon S3 (to store our website), Route53 (to manage our DNS), GoDaddy (to get our domain), and W3schools (to get a website template).

W3schools https://www.w3schools.com/w3css/w3css_templates.asp
GoDaddy
https://nz.godaddy.com/
Public Bucket policy
{
“Version”: “2012-10-17”,
“Statement”: [
{
“Sid”: “PublicReadGetObject”,
“Effect”: “Allow”,
“Principal”: “*”,
“Action”: [
“s3:GetObject”
],
“Resource”: [
“arn:aws:s3:::example-bucket/*”
]
}
]
}