File tree Expand file tree Collapse file tree 4 files changed +53
-0
lines changed
etc/s6-overlay/s6-rc.d/init-swag-config Expand file tree Collapse file tree 4 files changed +53
-0
lines changed Original file line number Diff line number Diff line change 1+ .idea
12.jenkins-external
Original file line number Diff line number Diff line change 1+ ## Version 2025/06/08 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx/tinyauth-location.conf.sample
2+ # Make sure that your tinyauth container is in the same user defined bridge network and is named tinyauth
3+ # Rename /config/nginx/proxy-confs/tinyauth.subdomain.conf.sample to /config/nginx/proxy-confs/tinyauth.subdomain.conf
4+
5+ ## Send a subrequest to tinyauth to verify if the user is authenticated and has permission to access the resource
6+ auth_request /tinyauth;
7+
8+ ## If the subreqest returns 200 pass to the backend, if the subrequest returns 401 redirect to the portal
9+ error_page 401 = @tinyauth_login;
Original file line number Diff line number Diff line change 1+ ## Version 2025/06/08 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx/tinyauth-server.conf.sample
2+ # Make sure that your tinyauth container is in the same user defined bridge network and is named tinyauth
3+ # Rename /config/nginx/proxy-confs/tinyauth.subdomain.conf.sample to /config/nginx/proxy-confs/tinyauth.subdomain.conf
4+
5+ # location for tinyauth auth requests
6+ location /tinyauth {
7+ internal;
8+
9+ include /config/nginx/proxy.conf;
10+ include /config/nginx/resolver.conf;
11+ set $upstream_tinyauth tinyauth;
12+ proxy_pass http://$upstream_tinyauth:3000/api/auth/nginx;
13+
14+ proxy_set_header x-forwarded-proto $scheme;
15+ proxy_set_header x-forwarded-host $http_host;
16+ proxy_set_header x-forwarded-uri $request_uri;
17+ }
18+
19+ # virtual location for tinyauth 401 redirects
20+ location @tinyauth_login {
21+ internal;
22+
23+ ## Set the $target_url variable based on the original request
24+ set_escape_uri $target_url $scheme://$http_host$request_uri;
25+
26+ ## Set the $signin_url variable
27+ set $domain $host;
28+ if ($host ~* "^[^.]+\.([^.]+\..+)$") {
29+ set $domain $1;
30+ }
31+ set $signin_url https://tinyauth.$domain/login?redirect_uri=$target_url;
32+
33+ ## Redirect to login
34+ return 302 $signin_url;
35+ }
Original file line number Diff line number Diff line change @@ -22,6 +22,14 @@ if [[ ! -f /config/nginx/authentik-server.conf ]]; then
2222 cp /defaults/nginx/authentik-server.conf.sample /config/nginx/authentik-server.conf
2323fi
2424
25+ # copy tinyauth config files if they don't exist
26+ if [[ ! -f /config/nginx/tinyauth-location.conf ]]; then
27+ cp /defaults/nginx/tinyauth-location.conf.sample /config/nginx/tinyauth-location.conf
28+ fi
29+ if [[ ! -f /config/nginx/tinyauth-server.conf ]]; then
30+ cp /defaults/nginx/tinyauth-server.conf.sample /config/nginx/tinyauth-server.conf
31+ fi
32+
2533# copy old ldap config file to new location
2634if [[ -f /config/nginx/ldap.conf ]] && [[ ! -f /config/nginx/ldap-server.conf ]]; then
2735 cp /config/nginx/ldap.conf /config/nginx/ldap-server.conf
You can’t perform that action at this time.
0 commit comments