Halo v1.0 正式发布
coco 对的,这就是默认的主题,首次启动 halo
就会输出日志:StartedListener : Copied theme folder from [/BOOT-INF/classes/templates/themes] to [/root/.halo/templates/themes]
。
coco
试试以下三种方案:
- 查看一下防火墙是否开放了 80 端口呢。我发现你的
nginx
默认的页面都是无法访问的; - 查看
nginx
是否真的启动了; - 查看你的
IP
是否已经被GFW
ban 了。
- 已编辑
coco
nginx 最新配置:
/etc/nginx/conf.d/halo.conf
server {
listen 80;
server_name example.com www.example.com;
location / {
proxy_set_header HOST $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:8090/;
}
}
- 已编辑
coco 从访问你刚刚搭建好的博客来看,需要重新在系统设置中设置一下博客地址
,这样博客的资源才会正确请求。
新建的菜单1,设置好 url ,怎么把文章 归属于 新建的菜单下?
BangByte /archives/文章的url即可。
docker版本,有1.0的吗
NotFound latest就是1.0
NotFound 不支持,这个只是从0.4.4迁移到1.0用到的。