Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions root/defaults/nginx/authentik-server.conf.sample
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ location ^~ /outpost.goauthentik.io {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_authentik authentik-server;
proxy_pass http://$upstream_authentik:9000;
proxy_pass https://$upstream_authentik:9443;
}

# location for authentik auth requests
Expand All @@ -19,7 +19,7 @@ location = /outpost.goauthentik.io/auth/nginx {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_authentik authentik-server;
proxy_pass http://$upstream_authentik:9000/outpost.goauthentik.io/auth/nginx;
proxy_pass https://$upstream_authentik:9443/outpost.goauthentik.io/auth/nginx;

## Include the Set-Cookie header if present
auth_request_set $set_cookie $upstream_http_set_cookie;
Expand Down