portainer: add nginx conf

This commit is contained in:
Lukáš Kucharczyk 2021-06-20 22:29:25 +02:00
parent f2d80dbe15
commit e28b445cd8
No known key found for this signature in database
GPG Key ID: 65524498C0196B64
1 changed files with 20 additions and 0 deletions

View File

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