GitHub Pages is one of the most popular ways to host static websites directly from a GitHub repository. Here’s how to set it up:
Basic Setup
- Create a GitHub repository
- Push your static website files to the repository
- Go to repository Settings → Pages
- Select your source branch (typically “main” or “master”)
- Your site will be published at
https://yourusername.github.io/repositoryname
For a Custom Domain
- Add a CNAME file to your repository with your domain name
- Update your domain’s DNS settings:
- Add an A record pointing to GitHub Pages’ IP addresses
- Add a CNAME record for www subdomain
- Configure the custom domain in repository Settings → Pages
Benefits
- Completely free hosting
- Automatic HTTPS with SSL certificates
- Integrated with your version control workflow
- Good performance with GitHub’s CDN
To add a custom domain with a subdomain (e.g., blog.example.com
) to your GitHub Pages site, follow these steps. This process assumes you have a domain (like example.com
) and want to use a subdomain for your GitHub Pages site.
Step 1: Prepare Your Repository for GitHub Pages
- Ensure content is ready: Your repository must contain an
index.html
file in the root directory or adocs/
folder, depending on your setup. - Enable GitHub Pages:
- Go to your repository on GitHub.
- Navigate to Settings > Pages.
- Under “Source,” select the branch to publish (e.g.,
main
orgh-pages
). - If applicable, choose the folder (e.g.,
/ (root)
or/docs
). - Save the settings. This activates GitHub Pages for your repository.
Step 2: Set the Custom Domain in GitHub
- Add the subdomain:
- In the same Pages section, locate the “Custom domain” field.
- Enter your subdomain, e.g.,
blog.example.com
. - Click Save.
- What happens: GitHub creates a
CNAME
file in your repository with the subdomain name, linking it to your GitHub Pages site.
Step 3: Configure DNS Settings
- Access your DNS provider: Log in to your domain registrar or DNS management tool (e.g., GoDaddy, Namecheap, Cloudflare).
- Add a CNAME record:
- Create a new record with the following details:
- Type:
CNAME
- Name/Host:
blog
(this representsblog.example.com
; use only the subdomain part) - Value/Points to:
username.github.io
(replaceusername
with your GitHub username)
- Type:
- Save the record.
- Create a new record with the following details:
- Purpose: The CNAME record tells the DNS system to direct
blog.example.com
to your GitHub Pages site.
Step 4: Wait for DNS Propagation
- Time delay: DNS changes can take up to 24 hours to propagate worldwide, though it’s often faster.
- Check progress: Use tools like
dig
or online DNS checkers (e.g., WhatsMyDNS) to confirm the subdomain resolves to GitHub’s servers.
Step 5: Verify and Enable HTTPS
- Test the site: Once DNS propagates, visit your subdomain (e.g.,
blog.example.com
) in a browser to ensure it loads your GitHub Pages content. - Secure it with HTTPS:
- Back in Settings > Pages, check the “Enforce HTTPS” box.
- This ensures your site uses a secure connection, which GitHub Pages supports for custom subdomains.
Additional Notes
- Public vs. private repositories: This works for public repositories by default. For private repositories, you’ll need a paid GitHub plan (e.g., GitHub Pro) to use custom domains with GitHub Pages.
- Apex domains: If you wanted to use the root domain (e.g.,
example.com
) instead of a subdomain, you’d need A records pointing to GitHub’s IP addresses (e.g.,185.199.108.153
). For subdomains, CNAME is sufficient. - Multiple subdomains: To use different subdomains (e.g.,
project1.example.com
,project2.example.com
) for different GitHub Pages sites, repeat this process for each repository, assigning a unique subdomain to each.
Troubleshooting Tips
- DNS not working?: Double-check your CNAME record for typos and ensure it points to
username.github.io
(notusername.github.io/repository-name
). - Site not loading?: Confirm GitHub Pages is enabled and the custom domain is saved in the repository settings.
- HTTPS issues?: Ensure DNS has fully propagated before enabling “Enforce HTTPS.”
By following these steps, your GitHub Pages site will be accessible at your custom subdomain, providing a professional and personalized URL.