logo
Menu
Hosting my Static Website in an AWS S3 Bucket — Part 1

Hosting my Static Website in an AWS S3 Bucket — Part 1

And you can do the same too!

Published Feb 13, 2024
Last Modified May 20, 2024
— Architecture Diagram of Hosting my Professional Resume Website in an AWS S3 Bucket (picture by author)
After spending a very long time designing and creating my professional resume website I wanted to show it to the world, but how?! 😱
In this guide, you will embark in a journey to understand the different terminologies, discover the different types of hosting and how to choose a solution that fits your needs.
  • This is the first part of the series of 4 parts, where I start with the simplest solution.
  • Part 2 covers some improvements that can be achieved with Amazon CloudFront.
  • Part 3 shows the final enhancements using Amazon Route 53.
  • The last part shows how to build the infrastructure used here with the Terraform — IaC.
And if this is the first time you are hearing about “static”, “hosting”, “AWS”, and “S3 Bucket”, don’t worry. I have written some articles (links below) you can refer to for clarifications.

Table of Contents

  1. Prerequisites
  2. Static vs Dynamic Websites
  3. Types of Web Hosting
  4. Amazon Web Services (AWS)
  5. Amazon Simple Storage Service (Amazon S3)
  6. My Solution using Amazon S3
    – Step 1: Creating my S3 bucket
    – Step 2: Enabling static website hosting
    – Step 3: Securing my S3 bucket through IAM policies
    – Step 4: Uploading web files to my S3 bucket
    – Step 5: Testing my website endpoint

Prerequisites

To follow along this guide, please make sure the following requirements are met:
  • AWS account: You can sign up here and follow this tutorial to set it up.
  • A static website. — you can refer to my github repository for my website
  • https://github.com/rnem/aws/tree/main/projects/static-website-on-aws/www.rogernem.com
  • https://community.aws/content/2c6dxofg1ys1QMBRom8CMOcFS1D/static-vs-dynamic-websites
In my case, based on the article I wrote above and because my resume doesn’t need to be updated frequently, the best option is to create it as a static website.

Types of Web Hosting

In the digital age, where online presence is the linchpin of success, the importance of a robust website cannot be overstated. Yet, amidst the meticulous design, compelling content, and strategic SEO efforts, one often overlooked aspect that can significantly impact a website’s performance is the choice of web hosting.
Check out the article below for more details on the different types of web hosting services.
https://community.aws/content/2cKcil6YsGXvycaezdaNSjS6r2b/types-of-web-hosting

Amazon Web Services (AWS)

— Amazon Web Services (AWS) (picture by author)
Amazon Web Services (AWS) is the world’s most comprehensive, evolving cloud computing platform provided by Amazon that includes a mixture of infrastructure-as-a-service (IaaS), platform-as-a-service (PaaS) and packaged-software-as-a-service (SaaS) offerings. AWS services offers over 200 fully featured services from data centers globally.
Amazon.com Web Services launched its first web services in 2002 from the internal infrastructure that Amazon.com built to handle its online retail operations. In 2006, it began offering its defining IaaS services. AWS was one of the first companies to introduce a pay-as-you-go cloud computing model that scales to provide users with compute, storage or throughput as needed.

Amazon Simple Storage Service (Amazon S3)

Check out the article below for more details on Amazon S3.
https://community.aws/content/2c6dBEmQPpXeGxBxdu0EHkXPXpC/amazon-simple-storage-service-amazon-s3

My Solution using Amazon S3

Due to all of the benefits of Amazon S3, I have chosen to host my professional resume website in an AWS S3 Bucket.

Step 1: Creating my S3 bucket

The first step you need to take is to create an S3 bucket to put your website’s files and folders.
  1. Sign in to the AWS Management Console.
  2. Open the Amazon S3 console at https://console.aws.amazon.com/s3/.
This should display the S3 dashboard.
— Amazon S3 Dashboard (picture by author)
3. Click on Create bucket.
4. Choose a Region that is geographically close to you to minimize latency and costs, or to address regulatory requirements. The Region that you choose determines your Amazon S3 website endpoint.
— Create Bucket (picture by author)
NOTE: The name of an S3 bucket is unique GLOBALLY but a bucket is always created in the region you specify and never leaves that region until you transfer its objects to another one.
5. Under “Block Public Access settings for this bucket” section, uncheck the “Block all public access” checkbox and accept the acknowledgement.
(picture by author)
NOTE: Since you are going to host a website in this S3 Bucket, this needs to be done to make the S3 bucket accessible to the public.
6. Select “Disable” for Bucket Versioning.
(picture by author)
7. Optional: You can “Add tag” to your bucket for easy identification.
(picture by author)
8. Under “Default encryption” section, click on disable for Server-side encryption.
(picture by author)
9. Click on “Create bucket”.
(picture by author)
You should see the following message and screen.
Successfully created bucket “www.rogernem.com"
To upload files and folders, or to configure additional bucket settings, choose View details.
(picture by author)

Step 2: Enabling static website hosting

1. In the Buckets list, choose the name of the bucket that you want to enable static website hosting for (www.rogernem.com).
(picture by author)
2. Click on the “Properties” tab**.**
(picture by author)
3. Scroll down to the “Static website hosting” section and click on its Edit button.
(picture by author)
4. Under Static website hosting, choose Enable (1). Also, select Host a static website (2) for the Hosting type. In Index document, enter the file name of the index document, typically index.html(3).
(picture by author)
5. Click on “Save Changes”. You should see the following next.
(picture by author)
Under Static website hosting, note the Endpoint which is the Amazon S3 website endpoint for your bucket.
NOTE: After finishing configuring your bucket as a static website, you can use this endpoint to test your website.

Step 3: Securing my S3 bucket through IAM policies

To allow users to access your website and to secure your S3 bucket and block uploads and/or deletions, you will need to add a bucket policy.
  1. Under Buckets, click on the name of your website bucket.
     
  2. Click on the “Permissions” tab**.**
  3. Under Bucket Policy, choose Edit.
4. To grant public read access for your website, copy the following bucket policy, and paste it in the Bucket policy editor. Make sure to replace bucket-name with the name of your bucket.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::Bucket-Name/*"
]
}
]
}
NOTE: The Action “s3:GetObject” with Effect “Allow” let users browse your website.
  1. Scroll down and click on “Save changes”. You should see the following next.

Step 4: Uploading web files to my S3 bucket

After completing all the previous steps, you need to upload your website’s files and folders to your website S3 bucket.
1. Under Buckets, click on the name of your website bucket.
(picture by author)
 2. On the Objects tab, you can see that the bucket is currently empty, click on the Upload button.
(picture by author)
3. This should take you to the Upload page. Click Add files to add the website files and use Add folder to add the website folders.
(picture by author)
Note: The whole website folder shouldn’t be added all at once. Instead, add its content one after the other.
After the necessary files and folders have been added, scroll down and click on Upload. The upload should be done in a few minutes depending on your network and website content size.
NOTE: Do not close the tab while the upload process is happening.

Step 5: Testing my website endpoint

1. Under (picture by author)Buckets, click on the name of your website bucket.
 
2. Click on the “Properties” tab**.**
(picture by author)
3. Scroll down to the “Static website hosting” section and click on your endpoint URL.
(picture by author)
You should be able to see your website now.
Yay!🎉 Congratulations. That’s it!
My Professional Resume Website — www.rogernem.com (picture by author)
If you enjoyed this article and found it helpful, please don’t forget to leave a heart ❤, comment 💬, clap 👏🏻, and share ➦ it to show your support.
Also, don’t forget to connect, follow me for more articles and support me by buying me a coffee. :-) Thank you!

2 Comments