Static Web Site Hosting with Amazon S3 and Route 53

This was where I found myself when I wanted to put up a little web site to document my #rxbb8 project. I just wanted to document the design & build process, and I already had registered the domain rxbb8.com. The HTML content was simple enough to create directly in a text editor and styled with CSS from the Materialize library.
After I got a basic 1.0 version of my hand-crafted site, I uploaded the HTML (and associated images) to an Amazon S3 bucket. It only takes a few clicks to allow files in a S3 bucket to be web-accessible via a long cumbersome URL on Amazon AWS domain http://rxbb8.com.s3-website-us-west-2.amazonaws.com. Since I wanted this content to be accessible via the rxbb8.com domain I already registered, I started reading up on the AWS service named in geek-humor style as Route 53.
Route 53 is designed to handle the challenges of huge web properties, distributing workload across many computers in many regions. (No single computer could handled all global traffic for, say, netflix.com.) The challenge for a novice like myself is to figure out how to pull out just the one tool I need from this huge complex Swiss army knife.
Fortunately this usage case is popular enough for Amazon to have written a dedicated developer guide for it. Unfortunately, the page doesn't have all the details. The writer helpfully points the reader to other reference articles, but those pages revert back to talking about complex deployments and again it takes effort to distill the simple basics out of the big feature list.
If you get distracted or lost, stay focused on this Cliff Notes version:
- Go into Route 53 dashboard, create a Hosted Zone for the domain.
- In that Hosted Zone, AWS has created two record sets by default. One of them is the NS type, write down the name servers listed.
- Go to your domain registrar and tell them to point name servers for the domain to the AWS name servers listed in step 2.
- Create S3 storage bucket for the site, enable static website hosting.
- Create a new Record Set in the Route 53 Hosted Zone. Select "Alias" to "Yes" and point alias target to the S3 storage bucket in step 4.
Repeat #4 and #5 for each sub-domain that needs to be hosted. (The AWS documentation created example.com and repeated 4-5 for www.example.com.)
And then... wait.
The update in step 3 needs time to propagate to name servers across the internet. My registrar said it may take up to 24 hours. In my case, I started getting intermittent results within 2 hours, but it took more than 12 hours before everything stabilized to the new settings.
But it was worth the effort to see version 1.0 of my created-from-scratch static web site up and running on my domain! And since it's such a small and simple site with little traffic, it will cost me only a few pennies per month to host in this manner.