]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Don't use AuthFormLoginRequiredLocation in inline
authorEric Covener <covener@apache.org>
Sun, 1 Dec 2024 14:16:42 +0000 (14:16 +0000)
committerEric Covener <covener@apache.org>
Sun, 1 Dec 2024 14:16:42 +0000 (14:16 +0000)
Intro to inline says:

If a non-authenticated user attempts to access a page protected by
mod_auth_form that isn't configured with a AuthFormLoginRequiredLocation
directive, a HTTP_UNAUTHORIZED status code is returned to the browser
indicating to the user that they are not authorized to view the page.

The entire point seems to be to keep the URL the same by using an internal redirect
via ErrorDocument, and AuthFormLoginRequiredLocation conflicts with it.

Submitted By: Rishikeshan Lavakumar/Sulochana <oss AT @rishikeshan.com>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1922246 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_auth_form.xml

index e3fc46e67f6e60846a6c9e9f06dd073ce616b890..b31bb8816fc6dda5d2187c3e42c3e91367d51470 100644 (file)
@@ -212,7 +212,6 @@ ErrorDocument 401 "/login.shtml"
 AuthUserFile "conf/passwd"
 AuthType form
 AuthName /admin
-AuthFormLoginRequiredLocation "http://example.com/login.html"
 Session On
 SessionCookieName session path=/
         </highlight>