This post records the procedure of building this personal blog. It contains mainly four parts: preparation, DNS setting, email redirection, blog configuration.
Preparation
For a personal blog, we first need a server. I bought a domain name on WanWang of Aliyun. If it is your first time to buy a domain name, you should create an information template and provide your personal information for an identity verification. My domain name is wangsun.top.
My blog is based on GitHub Pages, a GitHub account is necessary. Then we should choose a framework to easily build our blog. Hexo and Hugo are two popular frameworks with many themes. Jekyll is a simple, blog-aware, static site generator for personal, project, or organization sites. I chose a Hexo theme supported by Jekyll. Find the corresponding repository on GitHub, fork it and rename.
DNS setting
Once we have a domain name, we cannot directly link our website to it. We need to create a mapping from the domain name to an IP address.
- Use the IP address of your GitHub Pages obtained by
1 |
|
-
Go to your DNS list, click on DNS setting of the domain you want to create the mapping. Add two new records with type
A
and record valueyour GitHub Pages IP address
, one with host recordwww
and the other with@
. (域名列表-解析-添加记录) -
Go to your GitHub repository, find
GitHub Pages
under Setting, savemaster branch
for source andwww.your_domain_name
for custom domain (this will create a CNAME file in repository).
Now we can access your personal blog by www.your_domain_name
or directly your_domain_name
. For example, www.wangsun.top or directly wangsun.top to access mine.
Email redirection
If we want an email address like me@wangsun.top
, we need to choose an mail server and then create a mapping from the domain name to it. Normally, we use email redirection for enterprise email. Alibaba, NetEase, Tencent and some other companies provide enterprise email service. I chose Alibaba because I automatically receive one account when I bought the domain name. And its DNS records (MX, CNAME, TXT) have already been added. If we want other companies’ service. Sign up an account, add your favorate name as a staff account, search for email server information and add DNS records.
In fact, I tried to redirect my personal tencent qq email. Sign up the account, go to setting, find Domain name mailbox
, manage it, create domain name mailbox. However, my domain name .top
is not supported by tencent emial server. So if your domain name is supported, follow the steps may work.
(登录-设置-帐户-域名邮箱-管理域名邮箱-创建域名邮箱)
Blog configuration
To modify and test the blog locally, we should prepare a local developing environment.
- Install Ruby if it doesn’t exist in your PC because Jekyll is written in Ruby.
1 |
|
- Install the Bundler gem.
1 |
|
- Install Jekyll and other dependencies from the GitHub Pages gem.
1 |
|
- If there is a problem with nokogori, install it manully and then Jekyll & dependencies.
1 |
|
To open with local web browser for developpement:
1 |
|
Basic configuration is in _config.yml
. Modify as needed.