文章转载来自使用 Hexo + Github 搭建自己的博客(图文教程)
替换主题参考Hexo 安装和替换主题、自定义博客主题
由于github部署的博客连接较慢,因此在购买腾讯云服务器之后将博客内容部署到腾讯云上,特此记录一下过程。
搭建过程
安装git node.js
查看版本命令用
新建仓库
新建一个repository,名称为 name.github.io
安装Hexo
首先安装cnpm
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| cnpm install hexo -g cnpm list -g cnpm uninstall -g hexo
hexo init
cnpm install -f hexo s
cnpm install hexo-util cnpm install moment cnpm install hexo-pagination cnpm install @adobe/css-tools cnpm install hexo-deployer-git cnpm install hexo-helper-live2d cnpm install live2d-widget-model-epsilon2_1
npm install hexo -g npm list -g npm uninstall -g hexo
|
1 2 3 4 5 6 7
| npm install hexo -g hexo -v hexo init npm install hexo g hexo s npm install hexo-deployer-git --save
|
修改_config.yml
1 2 3 4 5
| deploy: type: git repository: <git仓库.git> branch: master
|
建立ssh密钥
1
| ssh-keygen -t rsa -C "mail@xx.com"
|
并将默认保存位置的id_rsa.pub
内容存放到github网站中的SSH密钥中。
维护过程
1 2
| hexo new post "blog-name" hexo d -g
|
github自动推送
- 创建
.github\workflows\deploy.yml
- 在仓库添加私钥,SSH_PRIVATE,找一个本地一样的私钥
- 注意,packages.json也要提交
yaml文件内容:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| name: Deploy
on: [push]
jobs: build:
runs-on: ubuntu-latest
steps: - name: Checkout uses: actions/checkout@v2 with: ref: main
- name: Update Submodule run: | git submodule init git submodule update --remote
- name: Setup Node uses: actions/setup-node@v1 with: node-version: "14.x"
- name: Hexo Generate run: | rm -f .yarnclean yarn --frozen-lockfile --ignore-engines --ignore-optional --non-interactive --silent --ignore-scripts --production=false rm -rf ./public yarn run hexo clean yarn run hexo generate
- name: Hexo Deploy env: SSH_PRIVATE: ${{ secrets.SSH_PRIVATE }} GIT_NAME: <Your Name> GIT_EMAIL: <Your e-mail> run: | mkdir -p ~/.ssh/ echo "$SSH_PRIVATE" | tr -d '\r' > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan github.com >> ~/.ssh/known_hosts git config --global user.name "$GIT_NAME" git config --global user.email "$GIT_EMAIL" yarn run hexo deploy
|
云服务器部署
服务器安装CentOS 7操作系统,首先安装Nodejs和git:
1 2
| yum install nodejs yum install git
|
创建git用户和仓库
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| adduser git chmod 740 /etc/sudoers vim /etc/sudoers === root ALL=(ALL) ALL +++ git ALL=(ALL) ALL chmod 400 /etc/sudoers
sudo passwd git su git mkdir ~/.ssh vim ~/.ssh/authorized_keys #然后将电脑中执行 C:\Users\28236\.ssh\id_rsa.pub ,将公钥复制粘贴到authorized_keys linux: cat ~/.ssh/id_rsa.pub chmod 600 ~/.ssh/authorized_keys chmod 700 ~/.ssh ssh -v git@SERVER
# su git 切换用户进行后续操作 cd /home/git/ mkdir -p projects/blog # 把项目目录建立起来 mkdir repos && cd repos git init --bare blog.git # 创建仓库 cd blog.git/hooks vim post-receive # 创建一个钩子 +++ #!/bin/sh +++ git --work-tree=/home/git/projects/blog --git-dir=/home/git/repos/blog.git checkout -f chmod +x post-receive # 添加可执行权限 exit # 返回到root用户 chown -R git:git /home/git/repos/blog.git # 给git用户添加权限
|
使用nginx反向代理
安装nginx及使用:
1 2 3 4 5
| yum install nginx nginx -s reload nginx -s stop sudo service nginx restart systemctl enable nginx.service
|
配置nginx,修改/etc/nginx/nginx.conf:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| user root; ... server { listen 80; # listen [::]:80 default_server; server_name www.<domain> <domain>; root /home/git/projects/blog;
# Load configuration files for the default server block. include /etc/nginx/default.d
|
保存后重新部署。在公网中尝试连接,一般来说是失败。
开放云服务器端口
因为腾讯云服务器并没有开放端口无法外部ping通,因此需要在“安全规则中”开放端口,如下所示:

设置Hexo仓库
1 2 3 4
| deploy: type: git repo: git@server_ip:/home/git/repos/blog.git branch: master
|
提交更新:
配置域名解析
例如aliyun的域名解析设置如下:

域名备案
各类云服务器在绑定域名时都需要备案,否则无法使用,例如我用的阿里云域名和腾讯云服务器,就需要在腾讯云中登记公网ip绑定的域名。