Skip to content

Commit

Permalink
Merge pull request #465 from linuxserver/authelia-4.38-alt
Browse files Browse the repository at this point in the history
support for authelia 4.38+
  • Loading branch information
nemchik authored Mar 15, 2024
2 parents 26203c8 + c63b437 commit 9b3f418
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
11 changes: 8 additions & 3 deletions root/defaults/nginx/authelia-location.conf.sample
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
## Version 2023/04/27 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx/authelia-location.conf.sample
## Version 2024/03/14 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx/authelia-location.conf.sample
# Make sure that your authelia container is in the same user defined bridge network and is named authelia
# Rename /config/nginx/proxy-confs/authelia.subdomain.conf.sample to /config/nginx/proxy-confs/authelia.subdomain.conf
# Make sure that the authelia configuration.yml has 'path: "authelia"' defined
# For authelia 4.37 and below, make sure that the authelia configuration.yml has 'path: "authelia"' defined
# For authelia 4.38 and above, make sure that the authelia configuration.yml has 'address: "tcp://:9091/authelia"' defined

## Send a subrequest to Authelia to verify if the user is authenticated and has permission to access the resource
auth_request /authelia/api/verify;
## For authelia 4.37 and below, use the following line
# auth_request /authelia/api/verify;
## For authelia 4.38 and above, use the following line
auth_request /authelia/api/authz/auth-request;

## If the subreqest returns 200 pass to the backend, if the subrequest returns 401 redirect to the portal
error_page 401 = @authelia_proxy_signin;

Expand Down
7 changes: 4 additions & 3 deletions root/defaults/nginx/authelia-server.conf.sample
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## Version 2023/04/27 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx/authelia-server.conf.sample
## Version 2024/03/14 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx/authelia-server.conf.sample
# Make sure that your authelia container is in the same user defined bridge network and is named authelia
# Rename /config/nginx/proxy-confs/authelia.subdomain.conf.sample to /config/nginx/proxy-confs/authelia.subdomain.conf
# Make sure that the authelia configuration.yml has 'path: "authelia"' defined
# For authelia 4.37 and below, make sure that the authelia configuration.yml has 'path: "authelia"' defined
# For authelia 4.38 and above, make sure that the authelia configuration.yml has 'address: "tcp://:9091/authelia"' defined

# location for authelia subfolder requests
location ^~ /authelia {
Expand All @@ -13,7 +14,7 @@ location ^~ /authelia {
}

# location for authelia auth requests
location = /authelia/api/verify {
location ~ /authelia/api/(authz/auth-request|verify) {
internal;

include /config/nginx/proxy.conf;
Expand Down
1 change: 1 addition & 0 deletions root/defaults/nginx/authentik-location.conf.sample
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

## Send a subrequest to Authentik to verify if the user is authenticated and has permission to access the resource
auth_request /outpost.goauthentik.io/auth/nginx;

## If the subreqest returns 200 pass to the backend, if the subrequest returns 401 redirect to the portal
error_page 401 = @goauthentik_proxy_signin;

Expand Down

0 comments on commit 9b3f418

Please sign in to comment.