Nginx-Configurations/http.d/auth.shad.moe

21 lines
645 B
Text
Raw Normal View History

2024-11-04 13:52:16 -06:00
# Include a common header (Upgrade Websockets, Add Upstreams, Upgrade HTTP to HTTPS)
include snippets/global/common-boilerplate.conf;
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;
}