episyche logo

Episyche

Web Hosting/GitHub/

How to host a website on Github for free with a custom domain?

Published on

How to host a website on Github for free with a custom domain?
Hosting a website on a Linux server is too costly and challenging to configure. If the website is based on static content without any dynamic changes. Then we can host the website for free on GitHub’s Pages. Also, we can add a custom domain name for the website for free.

Introduction:

Suppose you want your website to be visible on the internet to everyone 24/7. You must store the HTML, CSS, and Javascript files on the internet. That means the hard disk in which your website files are stored must be connected to the internet and publicly accessible to everyone. To know more about web hosting read the article What is website hosting?

But to upload your files to web hosting services like Godaddy, Namecheap..etc, you need to pay certain charges. There is also a way to host your files for free if you know how to use GitHub. To know more about GitHub read the article What is Github? In this blog, we will walk you through the step-by-step process of hosting your website publicly for free using GitHub.

Flow Diagram:


Flow diagram

Prerequisites:

  • HTML files

Steps:

Step 1: Sign up / log in to GitHub

In case you don’t have a GitHub account follow this article (How to create a GitHub account ?) to create one and log in.

If you already have a GitHub account, please log in to GitHub (https://github.com/login).

Step 2: Create a repo

Create a public repository with a README file as shown in the following screenshot.

 

github repo

Step 3: Upload your files to the newly created repo

Before uploading the files to GitHub, please verify all the links of CSS, Images and JS files in your code. To know more about relative links click here. If everything is okay, please upload the files to the repo either via browser or using GitHub CLI commands.


gitub repo

Step 4: Add an index.html page

GitHub doesn't know which is the home page of your website, so we need to rename the homepage HTML file as index.html. Such that when users hit www.yoursite.com GitHub redirects to index.html automatically.

Step 5: Change repo settings

In order to make your website publicly visible to everyone on the internet, we need to enable a feature called GitHub pages. Try to enable the same as shown in the below screenshot.

Settings → Pages → Branch → main → Save


github repo

Step 6: Check website visibility

After updating GitHub settings as per the instructions in Step 5, you will get a public link for the respective repo.


github repo


Copy the public link and check that your website is accessible using a browser.


webiste

Step 7: Configure custom domain

The public link obtained from GitHub from Step 6 is a subdomain, in order to replace it with your domain (How to buy a custom domain? ) we need to add a CNAME record to the domain provider’s DNS Settings . To know more about DNS please check What is DNS?

In this blog, I am gonna use GoDaddy as a domain provider.

  • Open GoDaddy Website and navigate to the Manage My Products section.



godaddy dashboard

  • Under domains tab → Select the respective domain → Manage DNS



godaddy dns

  • Identify ( A record and CNAME record ) which are created by GoDaddy and delete those records. The following screenshot shows the A and CNAME records created by GoDaddy, therefore I am gonna delete them by clicking Bin Icon.



godaddy dns

  • Retrieve your GitHub username from your GitHub account, as shown in the below image.



godaddy

  • Add a CNAME record, similar to the image given below.

Type: CNAME

Name: www

TTL: Default

Note:* It is mandatory to add a ( . ) symbol at the end of your GitHub subdomain (for example dhanashekaran.github.io.)


godaddy


  • Add an A record, as shown in the below screenshot.

Type: CNAME

Name: @

Value: 185.199.108.153 (GitHub page server IP address)

TTL: Default



godaddy


  • As shown in the below screenshot, update your domain name in the custom domain section of your GitHub settings page. After saving the custom domain it might take up to 5 minutes to sync up with the DNS server (for example: GoDaddy Server).



godaddy

 

Step 8: Enable SSL Certificate to the website

  • Once the DNS settings are synced with the GitHub pages. You will get a DNS Check successful notification from GitHub.



godaddy

  • To enable an SSL certificate to the website, click on the Enforce HTTPS checkbox as shown in the above screenshot.

Result:

After finishing all the above-mentioned steps, please go to the web browser, enter your domain, and try to access it. An example output screenshot is given below.


webiste


Comments