Add Authelia #44

Merged
lukas merged 15 commits from add-authelia into main 2021-06-20 19:55:56 +00:00
1 changed files with 15 additions and 0 deletions
Showing only changes of commit c45df9911f - Show all commits

View File

@ -0,0 +1,15 @@
server {
listen 80;
return 301 https://$host$request_uri;
}
server {
server_name auth.{{ base_domain }};
listen 443 ssl http2;
location / {
set $upstream_authelia http://authelia:9091; # This example assumes a Docker deployment
proxy_pass $upstream_authelia;
include /etc/nginx/snippets/proxy.conf;
}
}