2023-02-05 13:05:18 -05:00
|
|
|
## Version 2023/02/05 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx/authentik-server.conf.sample
|
|
|
|
# Make sure that your authentik container is in the same user defined bridge network and is named authentik-server
|
|
|
|
|
|
|
|
# location for authentik auth requests
|
|
|
|
location /outpost.goauthentik.io {
|
|
|
|
include /config/nginx/resolver.conf;
|
|
|
|
set $upstream_authentik authentik-server;
|
|
|
|
proxy_pass http://$upstream_authentik:9000/outpost.goauthentik.io;
|
|
|
|
|
2023-02-05 17:50:45 -05:00
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Original-URL $scheme://$http_host$request_uri;
|
|
|
|
add_header Set-Cookie $auth_cookie;
|
|
|
|
auth_request_set $auth_cookie $upstream_http_set_cookie;
|
2023-02-05 13:05:18 -05:00
|
|
|
proxy_pass_request_body off;
|
2023-02-05 17:50:45 -05:00
|
|
|
proxy_set_header Content-Length "";
|
2023-02-05 13:05:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
# Virtual location for authentik 401 redirects
|
2023-02-05 17:50:45 -05:00
|
|
|
location @goauthentik_proxy_signin {
|
2023-02-05 13:05:18 -05:00
|
|
|
internal;
|
|
|
|
|
|
|
|
## Set the $target_url variable based on the original request.
|
|
|
|
set_escape_uri $target_url $scheme://$http_host$request_uri;
|
|
|
|
|
|
|
|
## Include the Set-Cookie header if present.
|
|
|
|
auth_request_set $set_cookie $upstream_http_set_cookie;
|
|
|
|
add_header Set-Cookie $set_cookie;
|
|
|
|
|
2023-02-05 17:59:48 -05:00
|
|
|
## Set $authentik_backend to route requests to the current domain by default
|
|
|
|
set $authentik_backend $http_host;
|
2023-02-05 13:05:18 -05:00
|
|
|
## In order for Webauthn to work with multiple domains authentik must operate on a separate subdomain
|
|
|
|
## To use authentik on a separate subdomain:
|
2023-02-05 17:59:48 -05:00
|
|
|
## * comment the $authentik_backend line above
|
2023-02-05 13:05:18 -05:00
|
|
|
## * rename /config/nginx/proxy-confs/authentik.conf.sample to /config/nginx/proxy-confs/authentik.conf
|
|
|
|
## * make sure that your dns has a cname set for authentik
|
2023-02-05 17:59:48 -05:00
|
|
|
## * uncomment the $authentik_backend line below and change example.com to your domain
|
2023-02-05 13:05:18 -05:00
|
|
|
## * restart the swag container
|
2023-02-05 17:59:48 -05:00
|
|
|
#set $authentik_backend authentik.example.com;
|
2023-02-05 13:05:18 -05:00
|
|
|
|
|
|
|
return 302 https://$authentik_backend/authentik/?rd=$target_url;
|
|
|
|
}
|