oops, didn't mean to auth wall the blog

This commit is contained in:
2026-07-09 02:18:16 -07:00
parent 1934ce36af
commit 3c3b9233f3

View File

@@ -2,14 +2,15 @@ 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;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:2368;
proxy_redirect off;
proxy_read_timeout 600s;
proxy_send_timeout 600s;
}
listen 80;