数据无价,谨慎操作

本文最后更新于:3 年前

大概是4周前,Ghost发布了v0.7.11,正当尝试更新时,错误的删除其他本来不应该删除的文件,导致更新失败.七月底Ghost发布了v1正式版,正当尝试安装时,遇到某些不明原因的错误,多次尝试修复无果,又因临近开学,便丢下一边,挂出了404. ## 新开始

开学前几周的繁忙过去,虽然是高三在暑假补课,但是作业依然不少. 周末,窗外的凤呼啸而过,雨滴熙熙攘攘的打在窗户上.手机响了一声,一看原来是台风“帕卡”已在广东台山登陆的消息. 刚刚醒的我看了看,手表已经是10点了.看了看外面的雨,想必要雨下很久,想了想,今天把Ghost修好吧.

  1. 最新版本的Ghost安装很简单,先安装nodejs
  2. 输入npm install -g ghost-cli
  3. 新建一个空目录,准备安装Ghost,进入目录输入ghost install
  4. 之后按照引导操作配置,即可.

问题

http和https来回跳转??Chrome提示重定向次数过多

解决方法

我之前也遇到过类似问题,不过忘记是怎么解决的 1.修改Ghost中 config.production.json 文件,Url中的键值https://改为http://.

1
2
3
4
5
6
7
8
{
"url": "http://blog.fsjohn.pw",
"server": {
"port": 2369,
"host": "127.0.0.1"
},
......
}

2.重启Ghost 附:Nginx配置文件

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
  server {
listen 80;
listen 443 ssl http2;
ssl_certificate /usr/local/nginx/conf/ssl/blog.fsjohn.pw.crt;
ssl_certificate_key /usr/local/nginx/conf/ssl/blog.fsjohn.pw.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
ssl_prefer_server_ciphers on;
ssl_session_timeout 10m;
ssl_session_cache builtin:1000 shared:SSL:10m;
ssl_buffer_size 1400;
add_header Strict-Transport-Security max-age=15768000;
ssl_stapling on;
ssl_stapling_verify on;
server_name blog.fsjohn.pw;
access_log /data/wwwlogs/blog.fsjohn.pw_nginx.log combined;
index index.html index.htm index.php;
root /data/wwwroot/blog.fsjohn.pw;
if ($ssl_protocol = "") { return 301 https://$host$request_uri; }

include /usr/local/nginx/conf/rewrite/none.conf;
#error_page 404 /404.html;
#error_page 502 /502.html;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:2369;
}
}

Appendix:

https://docs.ghost.org/docs/install-local

Update:

ghost update

说点什么

家中长期闲置着两块硬盘(一年前旧主机烧了主板留下来),恰好笔记本500GB的硬盘已经被SteamLibrary,Adobe CC,visual studio,Anime...塞的满满的.学习资料已经没地方放了. 之前在某东入了个ORICO的2.5寸硬盘盒,用了大半年,感觉还是挺方便的. 现在又在某宝ORICO的3.5寸硬盘盒,打算用了当仓库用.


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!