我正在尝试在自己的VPS上运行Ghost,主要是为了学习体验(我们现在就是这样)。
当我进入SSH并启动/重新启动nginx时,blog URL似乎显示了我正在尝试托管的博客,但我退出并暂时搁置一段时间,它似乎开始显示文件索引:
Index of /
HEAD
branches/
cgi-bin/
config
description
hooks/
info/
objects/
refs/
我不确定该目录的来源或发生了什么,尽管需要花费数小时的时间来深入了解文档。
编辑:这是位于/etc/nginx/conf.d
server {
listen 80;
server_name [url].com;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:2368;
}
}
/etc/nginx/sites-available
或/etc/nginx/sites-enabled
中没有任何内容。