template: sample scripts for each function. also reworked the backup script + checked it with actual_server

This commit is contained in:
2026-02-06 03:16:13 -08:00
parent cc8789e1df
commit 8665afbfa3
11 changed files with 655 additions and 32 deletions

View File

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