fix: remove duplicate error page

This commit is contained in:
Stavros
2026-09-09 19:02:53 +03:00
parent 9e54158d38
commit 7820a40f01
2 changed files with 1 additions and 7 deletions
@@ -6,9 +6,6 @@
auth_request /tinyauth;
auth_request_set $redirection_url $upstream_http_x_tinyauth_location;
error_page 401 403 =302 $redirection_url;
## If the subreqest returns 200 pass to the backend, if the subrequest returns 401 redirect to the URL tinyauth returns in the X-Tinyauth-Location header
error_page 401 = @tinyauth_login;
## Translate the user information response headers from the auth subrequest into variables
auth_request_set $email $upstream_http_remote_email;
@@ -16,9 +16,6 @@ location /tinyauth {
# Headers needed for authentication
proxy_set_header X-Original-URL $scheme://$http_host$request_uri;
proxy_set_header X-Real-IP $remote_addr;
# Not needed by Tinyauth right now but may be needed in the future
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Original-Method $request_method;
proxy_set_header X-Real-IP $remote_addr;
}