From: Graham Leggett Date: Mon, 30 Dec 2013 08:54:42 +0000 (+0000) Subject: Update transformation. X-Git-Tag: 2.5.0-alpha~4725 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc98889c5f0e10c59379da96ee4f418232c0a941;p=apache Update transformation. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1554169 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/expr.html.en b/docs/manual/expr.html.en index 1e663238f4..1393797cbd 100644 --- a/docs/manual/expr.html.en +++ b/docs/manual/expr.html.en @@ -46,7 +46,7 @@
  • Other
  • Comparison with SSLRequire
  • Version History
  • -

    See also

    +

    See also

    top

    Grammar in Backus-Naur Form notation

    diff --git a/docs/manual/mod/mod_authnz_ldap.xml.fr b/docs/manual/mod/mod_authnz_ldap.xml.fr index a0099f6b2b..597427a3c8 100644 --- a/docs/manual/mod/mod_authnz_ldap.xml.fr +++ b/docs/manual/mod/mod_authnz_ldap.xml.fr @@ -1,7 +1,7 @@ - + diff --git a/docs/manual/mod/mod_authz_dbd.html.en b/docs/manual/mod/mod_authz_dbd.html.en index 15b32ce065..cf80bf4a30 100644 --- a/docs/manual/mod/mod_authz_dbd.html.en +++ b/docs/manual/mod/mod_authz_dbd.html.en @@ -56,6 +56,7 @@

    Topics

    top
    +

    The Require Directives

    + +

    Apache's Require + directives are used during the authorization phase to ensure that + a user is allowed to access a resource. mod_authz_dbd extends the + authorization types with dbd-group, dbd-login and + dbd-logout.

    + +

    Since v2.5.0, expressions are supported + within the DBD require directives.

    + +

    Require dbd-group

    + +

    This directive specifies group membership that is required for the + user to gain access.

    + +
    +      Require dbd-group team
    +      AuthzDBDQuery "SELECT group FROM authz WHERE user = %s"
    +    
    + + + + +

    Require dbd-login

    + +

    This directive specifies a query to be run indicating the user + has logged in.

    + +
    +      Require dbd-login
    +      AuthzDBDQuery "UPDATE authn SET login = 'true' WHERE user = %s"
    +    
    + + + + +

    Require dbd-logout

    + +

    This directive specifies a query to be run indicating the user + has logged out.

    + +
    +      Require dbd-logout
    +      AuthzDBDQuery "UPDATE authn SET login = 'false' WHERE user = %s"
    +    
    + + + + +
    top
    +

    Database Login