Free SSL & Hosting: CloudFlare & Github

Josh Kissel

There are a few tutorials demonstrating how to set up an SSL connection with a website hosted on GitHub pages This One by Sheharyar Naseer and This Other One by Keanu Lee. While they were helpful they focused on custom website tools such as Octopress and Jekyll. This guide is aimed at purely static HTML, CSS, JS and a domain managed by Google Domains.

So why go through all this work?

Well first off it’s cheap, about as cheap as it comes for solid web hosting, custom domain, and SSL certificate. Really, the only thing you have to spend money on is the custom domain name. Hosting on GitHub with GitHub Pages is free and using a Flexible SSL from CloudFlare is also free. All you’re paying for is your domain name, so from $12 a year you get the big names of Google, Github, (and CloudFlare) behind you.

Secondly, you then get all the benefits that SSL has to offer. Those mainly being an added layer of security for your site and peace-of-mind for your customers. And possibly more important https now affects search engine rankings (at least from Google).

This guide takes into account that you have already purchased a custom domain name from Google, if not you should do that prior to anything else. This guide is aimed specifically at using Google Domains, so if your domain name is hosted elsewhere some of these steps may not be applicable to you but hopefully you should be able to sub your domain name hosting in with relative ease.

Step 1: CloudFlare

  1. If you don’t already have an account for CloudFlare go sign-up for one; it’s free.
  2. Add your site. This should be a site you want to add the SSL to.

Step 2: Google Domains

  1. Log into your Google Domain account and select the site you’re working with.
  2. On the DNS settings page you should see a Name Servers section; then click the “Use custom name servers” radio button and enter the two CloudFlare name servers
Google Custom Name Servers
  1. Copy the Custom Resource Records from Google DNS settings

    Note: if you are using other Google Apps (for business) like Mail, Doc, Drive etc you will also need to copy those records. Note: I only needed to transfer the MX (mail) records but your results may vary. 

#Step 3: Back to CloudFlare

  1. Go to your DNS settings in CloudFlare and enter all of your DNS records from Google. Also, you need to create a CNAME record that points to username.github.io
  2. On the DNS settings page, you need to turn on CloudFlare for all the records.
CloudFlare Cloud Icon

Step 4. Github

  1. Head over to GitHub and create a new repository named username.github.io, where username is your username (or organization name) on GitHub.

Step 5: Forcing SSL Connection

  1. Add this code to each page you want secured, at the very top of the <head>.
  2. <script type="text/javascript">
    var host = "yoursite.com";
    if ((host == window.location.host) && (window.location.protocol != "https:"))
    window.location.protocol = "https";
    </script>
  3. You should make sure all links now point to the https:// version of your site.

Hopefully, this worked for you! If you did this all in one go you should note that DNS records can take up to 72hrs to propagate across the web.

You should also be aware the Flexible version of SSL that CloudFlare isn’t as secure as Full SSL and as such should never be used to transfer sensitive data. The flexible SSL protects against unsecured networks and in general, will cause the rest of the web to treat your site as secure.