问一下github pages域名绑定的问题
比如我的用户名是username,我发现我只能给User page设置域名,其他的repo page的域名自动地成了二级目录。
比如给User page设置域名www.mydomain.com,我有个repo名为reponame,那么reponame的页面的域名自动成了www.mydomain.com/reponame
但是见到gitready的页面 gitready.com 也有别的语言的版本,域名分别是en.gitready.com , fr.gitready.com等等 这些是如何设置的呢?
gitready是个organization帐号 地址是 http://github.com/gitready 大家可以研究一下,能看出每个语言版本的repo里面都有CNAME文件,但是不知道他是如何设置DNS转向的
CNAME 裡面設置好
你的 domain 商那邊直接指過去 github.com 就可以了
http://github.com/blog/315-cname-support-for-github-pages
谁要是知道怎么实现gitready.com的各语言版网站的域名绑定,请回复
请认真看我的问题,不要轻易下结
已經回答了啊
例如 ru.gitready.com
他就是 CNAME 裡面 設 ru.gitready.com
http://github.com/gitready/ru/blob/gh-pages/CNAME
你看看我的 http://blog.hsatac.net/
就這樣設定
http://github.com/hSATAC/octo/blob/gh-pages/CNAME
你每一個 repo 都可以設定自己的 CNAME 的
我有誤解你的問題嗎?
幫@hSATAC 補充一下 DNS CNAME Record 的部份.
以我的例子是希望把 http://cyanglee.github.com 轉到 http://tech.cyanglee.com.
所以在github上面的CNAME: http://github.com/cyanglee/cyanglee.github.com/blob/master/CNAME
然後 DNS 設定的部份, 需要新增一筆 CNAME Record (以linode為例) :
Hostname: tech
Aliases to: cyanglee.github.com
不知道這樣是否有幫忙回答到問題?
@hSATAC github上我的确是这样设置的 push了个CNAME 但是对于project page,DNS record上如何设置呢,我试过转向ip,也试过转向http://username.github.com/repo-name的形式,都不行。你是怎么做的呢?你的账号是免费账号吗?
#8樓 @hSATAC 好,我们用一个现实的例子吧 请看我建的一个组织账户 http://github.com/ruc
我创建一个主repo名为 ruc.github.com,然后里面也不用放什么吧,然后 我建立一个名为blog的repo,建一个分支gh-pages,放上index.html和CNAME,CNAME的内容是blog.quantr.net
http://github.com/ruc/blog/blob/gh-pages/CNAME
然后我在我的域名商那边设置DNS record,如图(name.com的后台)
这样还是不行啊
我覺得你的 repo page 沒有建立成功
你看看你的 github notify 有出現 [blog] Page build successful
的訊息嗎?
因為按理說,不管 CNAME 有沒有設置成功,訪問 http://ruc.github.com/blog/ 應該是要有內容的
就像我的 http://blog.hsatac.net <=> http://hsatac.github.com/octo 一樣
您先確定看看跟著官方步驟做有沒有辦法把子 repo pages 建置成功吧
Instructions for setting up username.github.com/repo-name *
Caution: make your working directory clean before you do this (either stash or commit), otherwise this will lose any changes you've made to your project since the last commit.
cd /path/to/repo-name
git symbolic-ref HEAD refs/heads/gh-pages
rm .git/index
git clean -fdx
echo "My GitHub Page" > index.html
git add .
git commit -a -m "First pages commit"
git push origin gh-pages
#10樓 @hSATAC rebuild了一下 并且确保blog.quantr.net 指向 ruc.github.com 现在可以了
但是有个问题啊 访问http://ruc.github.com/blog/ 的话 域名不会跳转到http://blog.quantr.net 这可能应该在repo里面index.html来实现了 我不太清楚
另外 我发现访问你的 http://blog.hsatac.net/ 和 http://hsatac.github.com/octo/ 效果不同
还有个问题 在以上的操作里 我没有给ruc.github.com这个repo的页面指定域名(没有push任何CNAME文件) 如果有指定域名的话 会不会有冲突了
#12樓 @hSATAC 我在网页中用了个meta标签 用 http-equiv="refresh" content="0;url= 实现跳转
我试过了 正如你所言
我之前困惑产生的原因就在于 以为在DNS management那里 不同二级域名 指向的网址是不同的 以为只有username.github.com的页面的域名指向username.github.com
比如 http://username.github.com/repo-name 如果我想给它绑定个域名 subdomain.mydomain.com 我以为在DNS management那里 域名要指向http://username.github.com/repo-name
其实真相是 所有repo的gh-pages页面的域名都指向http://username.github.com
是的,我在一樓給的連結裡面說明的很清楚的。
#14樓 @hSATAC 似乎没那么清楚 否则也不会有人在那里问跟我一样的问题了
I have a website at http://guilhermechapiewski.github.com/simple-db-migrate/. I want to have a http://simple-db-migrate.com pointing to my Github address, but it’s not possible to point my DNS to something like “guilhermechapiewski.github.com/simple-db-migrate”.
Is there any way to solve this problem?
不知道解决没? 我现在wiki就是用的project page
http://wiki.osser.me,可以绑定域名
#16樓 @lidashuang 解决了 总结如下:
假设你的用户名是username,要绑定一个二级域名的话,那么不管是user page还是project page,在DNS record里增加相应的域名CNAME指向 username.github.com
如果要绑定顶级域名 就建立A指向 指向IP 207.97.227.245
谢谢各位的回答 @hSATAC @cyanglee @lidashuang