2024-11-04 11:09:00 -06:00
|
|
|
server {
|
|
|
|
|
|
|
|
server_name auth.shad.moe www.auth.shad.moe;
|
|
|
|
|
|
|
|
ssl_certificate /etc/letsencrypt/live/auth.shad.moe/fullchain.pem;
|
|
|
|
ssl_certificate_key /etc/letsencrypt/live/auth.shad.moe/privkey.pem;
|
2024-11-04 13:52:16 -06:00
|
|
|
ssl_trusted_certificate /etc/letsencrypt/live/auth.shad.moe/fullchain.pem;
|
2024-11-04 11:09:00 -06:00
|
|
|
|
2024-11-04 13:52:16 -06:00
|
|
|
include snippets/global/common-ssl.conf;
|
2024-11-04 11:09:00 -06:00
|
|
|
|
2024-11-04 13:52:16 -06:00
|
|
|
include snippets/proxy/common-proxy-headers.conf;
|
2024-11-04 11:09:00 -06:00
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_pass https://authentik;
|
|
|
|
}
|
|
|
|
|
2024-11-04 13:52:16 -06:00
|
|
|
include snippets/global/errors/http-cat-error-pages.conf;
|
|
|
|
}
|