Migrating from Github Pages to Cloudflare
Considering the trials and tribulations I went through configuring my github pages site, I was expecting the move to cloudflare pages to be equally difficult and time-consuming. However, I’m happy to report that this was actually a very simple switch over for me.
As this new site is a rewrite from scratch of my previous site, I took the liberty to change the tech stack as well as the deployment platform and infrastructure.
The code
Originally I was using Astro.js for my static site generation, but with the new site I chose Hugo instead. The main reasons for the switch is that I wanted to ensure that the site was being rendered statically, and with astro moving more and more focus into server-side rendering and cloudflare pages also supporting workers I felt like it was safer to go with something which I knew could only give me a static site.
As I’m not a front-end development wizard I decided to pick missing.css for my styling framework and I’ve created a couple of helpers using the hugo templating language which I’m sure I will add to over the coming days.
Once I was happy with an initial look of the site I pushed the code to a github repository so that I could connect it with cloudflare pages.
Deploying
To host on cloudflare pages I needed to:
- Create a new pages deployment
- Link my github and cloudflare accounts so that cloudflare can access the repository
- Configure the default build framework to Hugo
- Use the
hugo --baseURL $CF_PAGES_URL
build command to make sure that the baseURL referenced by hugo is up to date - Add a DNS CNAME record to point from my apex domain to the
pages.dev
subdomain given to me by cloudflare
All of this was very streamlined by the magical cloudflare wizard. I noticed that by default cloudflare DNS points to your apex domain rather
than www
, so I spent some additional time configuring a redirect rule to route from www.mydomain
to mydomain
.
Sticking points
After I had confirmed that the cloudflare pages site was up and running, I wanted to archive my old repo and rename the new cloudflare repo
to website
. This was possible to do in github quite easily but I had to deregister the integration and then reenable it in cloudflare, which
meant:
- Deleting the Github integration
- Attempting to create a new pages site until the Github integration
- Linking the integration
- Backing out of the create new pages wizard
- The cloudflare pages was now pointed to the correct and renamed github repo.
This was an annoying pain point, I could have left it as is but I wanted the repo name on the cloudflare dashboard to represent the actual name of the repo.