ghost: migrated to v6 + Docker Compose setup

This commit is contained in:
2026-07-09 02:14:16 -07:00
parent 7f860d47b9
commit 1934ce36af
9 changed files with 144 additions and 96 deletions

16
blog.knravish.me.conf Normal file
View File

@@ -0,0 +1,16 @@
server {
server_name blog.knravish.me;
index index.html index.htm;
include /etc/nginx/snippets/authelia-location.conf;
set $upstream http://127.0.0.1:2368;
location / {
include /etc/nginx/snippets/proxy.conf;
include /etc/nginx/snippets/authelia-authrequest.conf;
proxy_pass $upstream;
}
listen 80;
}