authelia: move proxy config up

This commit is contained in:
Lukáš Kucharczyk 2021-06-20 21:53:20 +02:00
parent 13c9974b4d
commit a465111aa7
No known key found for this signature in database
GPG Key ID: 65524498C0196B64
1 changed files with 1 additions and 1 deletions

View File

@ -9,8 +9,8 @@ server {
listen 443 ssl http2;
location / {
include /etc/nginx/snippets/proxy.conf;
set $upstream_authelia http://authelia:9091; # This example assumes a Docker deployment
proxy_pass $upstream_authelia;
include /etc/nginx/snippets/proxy.conf;
}
}