Many Into One Reid JS November 1, 2023

I'm in the process of combining a bunch of websites and apps as subdomains of hazybridge.com. For example, this blog (blog.hazybridge.com) replaces reidjs.substack.com. The podcast website is now bawcast.com These are my goals & intentions for the new strategy:

My old webhosting approach

Every time I want to host a new website I had to:

  1. Buy the domain from namecheap.com
  2. Create a new git repository on github.com
  3. Turn on GitHub Pages and configure DNS from namecheap to point towards GitHub
This approach works great, until you want subdomains or to run processes on the server. I ran into the limits of GitHub page, you don't have any control over the server that hosts your website. There's also significant latency when you push to github, because a GitHub action has to run to rebuild the page.

My new webhosting approach

These tasks are performed once:

  1. Use a preexisting domain from namecheap, hazybridge.com
  2. Provision a DigitalOcean Droplet and point namecheap DNS towards DigitalOcean
  3. Install NGINX
Then, to add a new project as a subdomain
  1. Create a new NGINX server block
  2. Create a new 'A' Record for the subdomain on DigitalOcean
  3. rsync the html/css/js files to the Droplet
The price is roughly the same, but I am taking on the responsibility of managing the server and all the potential risk that comes with that. The upside is that I have full control of the server and I lower my dependence on NameCheap and GitHub. Also, updates to the subdomains are nearly instantaneous. I'm going to keep moving sites over and see if anything unexpected happens, but overall I'm optimistic about this new approach.