Héberger vos pages web (static) sur GitHub
Quelques étapes pour héberger votre contenu web sur GitHub. Prenons notre exemple, Qalingo.com
1) Nous avons créé notre organisation sur GitHub: Qalingo
2) Nous créons notre projet, et le transférons vers l'organisation. Le projet associé doit être absolument de type yourName.github.com : qalingo.github.com
3) Règles DNS pour notre nom de domaine : qalingo.com
Par habitude, nous créons 4 redirections utiles:
Vous pouvez tester de temps en temps par la commande :
Enjoy.
1) Nous avons créé notre organisation sur GitHub: Qalingo
2) Nous créons notre projet, et le transférons vers l'organisation. Le projet associé doit être absolument de type yourName.github.com : qalingo.github.com
3) Règles DNS pour notre nom de domaine : qalingo.com
Par habitude, nous créons 4 redirections utiles:
qalingo.com vers www.qalingo.com w.qalingo.com vers www.qalingo.com ww.qalingo.com vers www.qalingo.com wwww.qalingo.com vers www.qalingo.comPuis 2 lignes de règles DNS
qalingo.github.com 10800 IN A 204.232.175.78 www 10800 IN CNAME qalingo.github.com.Attendre que les règles soient diffusées.
Vous pouvez tester de temps en temps par la commande :
host -t a domainNameSoit pour nous
host -t a www.qalingo.comqui dans notre exemple doit afficher :
www.qalingo.com is an alias for qalingo.github.com. qalingo.github.com has address 204.232.175.78Il ne vous reste plus qu'à déposer votre projet web static sur votre repos GitHub (clone, add, commit, push, ...).
Enjoy.
Host your (static) website pages on GitHub
Few steps to host your web content on GitHub. Consider our example, Qalingo.com
1) We have create our organization on GitHub: Qalingo
2) We create our project, and transfer to the organization. The project name must be absolutely like yourName.github.com: qalingo.github.com
3) Rules for our DNS domain name: qalingo.com
As many times, we create four helpful redirects:
Some time, you can test with the command
Enjoy.
1) We have create our organization on GitHub: Qalingo
2) We create our project, and transfer to the organization. The project name must be absolutely like yourName.github.com: qalingo.github.com
3) Rules for our DNS domain name: qalingo.com
As many times, we create four helpful redirects:
qalingo.com vers www.qalingo.com w.qalingo.com vers www.qalingo.com ww.qalingo.com vers www.qalingo.com wwww.qalingo.com vers www.qalingo.comThen 2 lines of DNS rules
qalingo.github.com 10800 IN A 204.232.175.78 www 10800 IN CNAME qalingo.github.com.Wait until the rules are diffused.
Some time, you can test with the command
host -t a domainNamein our case, looks like
host -t a www.qalingo.comwhich in our example will display:
www.qalingo.com is an alias for qalingo.github.com. qalingo.github.com has address 204.232.175.78Just drop your static web project on your rest GitHub (clone, add, commit, push, ...).
Enjoy.