Did you know that you can navigate the posts by swiping left and right?
In this tutorial I will show you how to configure a domain with name.com and use in your Jekyll website with Cloudflare.
Repository Settings:www is required):5.1. It’s required that you create a CNAME file in your site root with the domain you’ll manage:
In my case:
But there is a Bash command to do that:
printf "<domain>\n<domain with www>" > CNAME && git add . && git commit -m "Added CNAME" && git push
Example:
printf "zenth10n.net\nwww.zenth10n.net" > CNAME && git add . && git commit -m "Added CNAME" && git push
Add it as shown below:Here you need to press “Continue” button, we’ll configure this later.
_config.yml file and change all variables that depends on url:192.30.252.153 (as an A record for the @ wildcard) and a CNAME record pointing to www as a alias to your site url (in my case: z3nth10n.github.com) in your Cloudflare dashboard:$ curl -sI "http://z3nth10n.net" | grep "HTTP/\|Location"
If you have problems in Windows, you can use:
ipconfig /flushdns
This will delete all your DNS cache, so if you have any issue and you fix it, your changes will apply quicklier.
Note: In case you have problems don’t hesistate to ask in a comment.
Best regards!