关于本站建设过程

配置:腾讯云 轻量应用服务器2核cpu,2G内存,50G系统盘(Ubuntu 24.04)

更新系统
sudo apt update && sudo apt upgrade -y

安装工具
sudo apt install -y curl unzip git ufw

安装Node.js和Ghost Cli
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt install -y nodejs

安装Ghost Cli(Ghost 博客管理工具)
sudo npm install -g ghost-cli

检查安装
node -v
ghost -v

配置Mysql数据库
1、安装Mysql
sudo apt install -y mysql-server
sudo systemctl enable mysql
sudo systemctl start mysql

设置Mysql密码
sudo mysql_secure_installation

2、创建Ghost数据库
mysql -u root -p

执行数据库创建语句:
CREATE DATABASE ghost_db;
CREATE USER 'ghost_user'@'localhost' IDENTIFIED BY 'yourpassword';
GRANT ALL PRIVILEGES ON ghost_db.* TO 'ghost_user'@'localhost';
FLUSH PRIVILEGES;
EXIT;

安装Ghost,由于Ghost只能在非root用户访问和修改,所以先创建用户ghostadmin.
创建:
sudo adduser ghostadmin
将用户加入sodo组:
sudo usermod -aG sudo ghostadmin

切换用户(以下操作都在ghostadmin下运行):
su - ghostadmin

然后创建运行目录
sudo mkdir -p /var/www/ghost
sudo chown -R $USER:$USER /var/www/ghost
cd /var/www/ghost

安装ghost
ghost install

按照提示:
输入博客url:

Mysql数据库信息:
数据库名:
用户名:
密码:
主机:

选择Nginx配置反向代理

选择Let's Encrypt生成HTTPS证书;
ghost安装完成会自动启动博客。

配置Nginx反向代理
Ghost安装的时候自动生成了Nginx配置,但是需要手动修改:
sudo nano /etc/nginx/sites-available/ghost

写入:
server {
listen 80;
server_name yourdomain.com;

location / {
    proxy_pass http://127.0.0.1:2368;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header Host $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

}

启动Nginx配置
sudo ln -s /etc/nginx/sites-available/ghost /etc/nginx/sites-enabled/
sudo nginx -t
sudo systemctl restart nginx

配置HTTPS证书
如果安装时未配置HTTPS,可以手动安装Let's Encrypt:
sudo apt install -y certbot python3-certbot-nginx
sudo certbot --nginx -d yourdomain.com

自动续期:
sudo certbot renew --dry-run

配置Redis缓存:
Ghost默认支持Redis,可用来加速博客访问。

安装Redis:
sudo apt install -y redis-server
sudo systemctl enable redis
sudo systemctl start redis

配置Ghost使用Redis:
编辑ghost配置:
nano /var/www/ghost/config.production.json

在"cache"部分修改(如果没有就加上):
"cache": {
"client": "redis",
"connection": {
"host": "127.0.0.1",
"port": 6379
}
}

重启Ghost使Redis生效:
ghost restart

配置Github Action自动化部署:
在Github仓库创建 ".github/workflows/deploy.yml"
deploy.yml:

name: Deploy Ghost Blog
on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: SSH to server and deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SERVER_IP }}
username: root
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
cd /var/www/ghost
git pull origin main
ghost restart

配置Github Secrets;
在 GitHub "Settings → Secrets and Variables → Actions" 添加:

SERVER_IP(服务器 IP)

SSH_PRIVATE_KEY(SSH 私钥)

每次提交代码后,GitHub Actions 会自动更新博客并重启 Ghost.

维护和优化:
查看Ghost状态:
ghost status

更新Ghost:
ghost update

查看日志:
ghost log

关于头像、封面上传失败的解决办法:
安装Sharp:
npm install sharp --ignore-scripts