Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a gh-pages branch in one of my http://github.com repos. The GitHub project pages works fine if I go to http://myuser.github.com/myrepo

I want to setup a custom domain (myexample.com) that will serve up this project pages. I want both myexample.com and www.myexample.com to serve up these project pages.

GitHub pages help says to make an A record and a CNAME record in your DNS. The A record makes sense, but I do not know what CNAME record to make in my DNS.

The gh-pages docs say to make a CNAME record for 'charlie.github.com' which is a user page repository. I do not have a user page repository - I only have a project repository and a gh-pages branch that I want to use for myexample.com and www.myexample.com.

Do I need to make a user page repository just so I can use my project page for www.myexample.com and myexample.com?

I would just try it, but I want to make sure this will work as I already have www.myexample.com live and don't want to make a mistake.

I emailed GitHub support and their response was

You can't have both point to the same gh-pages as far as I know.

I find it hard to believe they would only support A records for project pages.

Has anyone successfully done this before?

share|improve this question
4  
I've set up lacewing-project.org with just an A record pointing to 207.97.227.245 (no CNAME records), and it works fine. I also put a file called CNAME in the root of the gh-pages branch containing the domain name. – James McLaughlin Jan 31 '12 at 15:56
Cool I'll try it out. You should make this an answer so you get some credit when it works.. – rynop Feb 2 '12 at 21:02

2 Answers

up vote 59 down vote accepted
+50

So I figured it out. James McLaughlin gave me the nudge I needed.

To Setup a custom domain for a gh-pages Project Pages repo that handles www.yourdomain.com and yourdomain.com (assumes you already have a gh-pages branch on your repo):

  1. From your project repo, gh-pages branch. Create a CNAME file with the contents yourdomain.com. Commit then push.
  2. In your DNS manager, setup two A records. One for the root apex (@) and one for www. Both point to 204.232.175.78
  3. Wait til your name servers update.
share|improve this answer
Oh man this was annoying me for weeks. Finally it works. It's great to know someone out there was looking for the same thing :D – phwd Mar 1 '12 at 0:20
8  
As of Apr 19, 2012, GitHub's documentation uses 204.232.175.78 as the IP address. – Aseem Kishore Apr 20 '12 at 2:24
I am getting invalid hostname for 204.232.175.78 – fccoelho May 1 at 22:10
I think it's also okay to set up a CNAME that points www to the root. – Mark May 6 at 20:28
Is it possible to set this up with a CNAME (no A record)? – iwein May 15 at 6:28
show 1 more comment

There is now a github article for it which guides you through the proccess

share|improve this answer
the github article isn't clear about project pages. – ReAzem Apr 19 at 21:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.