19 lines
556 B
Text
19 lines
556 B
Text
|
server {
|
||
|
|
||
|
server_name auth.konpeki.solutions www.auth.konpeki.solutions;
|
||
|
|
||
|
ssl_certificate /etc/letsencrypt/live/auth.konpeki.solutions/fullchain.pem;
|
||
|
ssl_certificate_key /etc/letsencrypt/live/auth.konpeki.solutions/privkey.pem;
|
||
|
ssl_trusted_certificate /etc/letsencrypt/live/auth.konpeki.solutions/fullchain.pem;
|
||
|
|
||
|
include snippets/global/common-ssl.conf;
|
||
|
|
||
|
include snippets/proxy/common-proxy-headers.conf;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass https://authentik;
|
||
|
}
|
||
|
|
||
|
include snippets/global/errors/http-cat-error-pages.conf;
|
||
|
}
|