Blog-03:Github域名绑定阿里云域名

张建 lol

注册域名

阿里云 注册账号、并购买域名,具体流程这里就不一一介绍了

域名解析

  • 在终端 ping 一下之前配置的静态页面地址,可以获取到对应的ip地址:
1
2
3
4
5
6
mac@bogon ~ % ping BboyZJ.github.io
PING bboyzj.github.io (185.199.109.153): 56 data bytes
64 bytes from 185.199.109.153: icmp_seq=0 ttl=50 time=261.217 ms
64 bytes from 185.199.109.153: icmp_seq=1 ttl=50 time=337.547 ms
64 bytes from 185.199.109.153: icmp_seq=2 ttl=50 time=260.716 ms
...
  • @解析

记录类型:A
主机记录:@
解析请求来源:默认
记录值:185.199.109.153
TTL:10分钟

点击确定

  • www解析

记录类型:CNAME
主机记录:www
解析线路来源:默认
记录值:BboyZJ.github.io
TTL:10分钟

点击确定

  • 配置项目 CNAME

Blog/source 目录下,新建 CNAME 文件,内容输入阿里云申请的域名 www.bboyzj.cn

1
2
mac@bogon ~ % cd /Users/mac/Desktop/Blog/source 
mac@bogon source % touch CNAME
  • 配置 Blog 目录下 _config.yml 文件,URL 模块
1
2
3
4
5
6
7
8
9
# URL
## Set your site url here. For example, if you use GitHub Page, set url as 'https://username.github.io/project'
url: https://www.bboyzj.cn
root: /BboyZJ.github.io/
permalink: :year/:month/:day/:title/
permalink_defaults:
pretty_urls:
trailing_index: true # Set to false to remove trailing 'index.html' from permalinks
trailing_html: true # Set to false to remove trailing '.html' from permalinks
  • 执行
1
2
3
mac@bogon ~ % hexo clean
mac@bogon ~ % hexo g
mac@bogon ~ % hexo d

提交陈成功后,就可以在 GitHubwww.bboyzj.cn 个人域名绑定上了

  • Post title:Blog-03:Github域名绑定阿里云域名
  • Post author:张建
  • Create time:2023-03-01 10:17:25
  • Post link:https://redefine.ohevan.com/2023/03/01/Blog搭建/Blog-03:Github域名绑定阿里云域名/
  • Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.
On this page
Blog-03:Github域名绑定阿里云域名