From: Daniel Gruno
Date: Fri, 3 Aug 2012 13:53:20 +0000 (+0000)
Subject: Fix up the order of hooks and separate auth and access hooks.
X-Git-Tag: 2.5.0-alpha~6520
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b7d27af23dfcb7199c9e1108e6ffdf46458ffda;p=apache
Fix up the order of hooks and separate auth and access hooks.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1368959 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml
index d7217defe0..389b397939 100644
--- a/docs/manual/mod/mod_lua.xml
+++ b/docs/manual/mod/mod_lua.xml
@@ -223,15 +223,23 @@ performing access control, or setting mimetypes:
Check Access |
- LuaHookAuthChecker or LuaAuthzProvider |
- This phase authenticates and grants or denies access to the
- requested resource |
+ LuaHookAccessChecker |
+ This phase checks whether a client has access to a resource. This
+ phase is run before the user is authenticated, so beware.
|
Check User ID |
LuaHookCheckUserID |
This phase it used to check the negotiated user ID |
+
+ Check Authorization |
+ LuaHookAuthChecker or
+ LuaAuthzProvider |
+ This phase authorizes a user based on the negotiated credentials, such as
+ user ID, client certificate etc.
+ |
+
Check Type |
LuaHookTypeChecker |