diff --git a/roles/authelia/templates/authelia.conf.j2 b/roles/authelia/templates/authelia.conf.j2 new file mode 100644 index 0000000..463c3dc --- /dev/null +++ b/roles/authelia/templates/authelia.conf.j2 @@ -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; + } +} \ No newline at end of file