Commit 0cc10a22 authored by Christophe Jaillet's avatar Christophe Jaillet
Browse files

xforms

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1736708 13f79535-47bb-0310-9956-ffa450edef68
parent 68dcb001
Loading
Loading
Loading
Loading
+16 −15
Original line number Diff line number Diff line
@@ -490,7 +490,7 @@ AuthLDAPMaxSubGroupDepth 1</pre>
    <p>The following directive would grant access to anyone with
    the attribute employeeType = active</p>

    <pre class="prettyprint lang-config">Require ldap-attribute employeeType=active</pre>
    <pre class="prettyprint lang-config">Require ldap-attribute "employeeType=active"</pre>


    <p>Multiple attribute/value pairs can be specified on the same line
@@ -504,7 +504,7 @@ AuthLDAPMaxSubGroupDepth 1</pre>
    <p>The following directive would grant access to anyone with
    the city attribute equal to "San Jose" or status equal to "Active"</p>

    <pre class="prettyprint lang-config">Require ldap-attribute city="San Jose" status=active</pre>
    <pre class="prettyprint lang-config">Require ldap-attribute city="San Jose" "status=active"</pre>



@@ -519,7 +519,7 @@ AuthLDAPMaxSubGroupDepth 1</pre>
    <p>The following directive would grant access to anyone having a cell phone
    and is in the marketing department</p>

    <pre class="prettyprint lang-config">Require ldap-filter &amp;(cell=*)(department=marketing)</pre>
    <pre class="prettyprint lang-config">Require ldap-filter "&amp;(cell=*)(department=marketing)"</pre>


    <p>The difference between the <code>Require ldap-filter</code> directive and the
@@ -812,7 +812,7 @@ authorization</td></tr>
<div class="directive-section"><h2><a name="AuthLDAPBindAuthoritative" id="AuthLDAPBindAuthoritative">AuthLDAPBindAuthoritative</a> <a name="authldapbindauthoritative" id="authldapbindauthoritative">Directive</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Determines if other authentication providers are used when a user can be mapped to a DN but the server cannot successfully bind with the user's credentials.</td></tr>
<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AuthLDAPBindAuthoritative<em>off|on</em></code></td></tr>
<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AuthLDAPBindAuthoritative off|on</code></td></tr>
<tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>AuthLDAPBindAuthoritative on</code></td></tr>
<tr><th><a href="directive-dict.html#Context">Context:</a></th><td>directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">Override:</a></th><td>AuthConfig</td></tr>
@@ -822,7 +822,7 @@ authorization</td></tr>
    <p>By default, subsequent authentication providers are only queried if a
    user cannot be mapped to a DN, but not if the user can be mapped to a DN and their
    password cannot be verified with an LDAP bind.
    If <code class="directive"><a href="#authldapbindauthoritative">AuthLDAPBindAuthoritative</a></code>
    If <code class="directive">AuthLDAPBindAuthoritative</code>
    is set to <em>off</em>, other configured authentication modules will have
    a chance to validate the user if the LDAP bind (with the current user's credentials)
    fails for any reason.</p>
@@ -865,7 +865,7 @@ authorization</td></tr>
</table>
    <p>A bind password to use in conjunction with the bind DN. Note
    that the bind password is probably sensitive data, and should be
    properly protected. You should only use the <code class="directive"><a href="#authldapbinddn">AuthLDAPBindDN</a></code> and <code class="directive"><a href="#authldapbindpassword">AuthLDAPBindPassword</a></code> if you
    properly protected. You should only use the <code class="directive"><a href="#authldapbinddn">AuthLDAPBindDN</a></code> and <code class="directive">AuthLDAPBindPassword</code> if you
    absolutely need them to search the directory.</p>

    <p>If the value begins with exec: the resulting command will be
@@ -1031,7 +1031,7 @@ group membership</td></tr>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Determines if the server does the initial DN lookup using the basic authentication users'
own username, instead of anonymously or with hard-coded credentials for the server</td></tr>
<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AuthLDAPInitialBindAsUser <em>off|on</em></code></td></tr>
<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AuthLDAPInitialBindAsUser off|on</code></td></tr>
<tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>AuthLDAPInitialBindAsUser off</code></td></tr>
<tr><th><a href="directive-dict.html#Context">Context:</a></th><td>directory, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">Override:</a></th><td>AuthConfig</td></tr>
@@ -1162,7 +1162,7 @@ query to set the REMOTE_USER environment variable</td></tr>
    value of the attribute specified. Make sure that this attribute is
    included in the list of attributes in the AuthLDAPUrl definition,
    otherwise this directive will have no effect. This directive, if
    present, takes precedence over AuthLDAPRemoteUserIsDN. This
    present, takes precedence over <code class="directive"><a href="#authldapremoteuserisdn">AuthLDAPRemoteUserIsDN</a></code>. This
    directive is useful should you want people to log into a website
    using an email address, but a backend application expects the
    username as a userid.</p>
@@ -1238,8 +1238,8 @@ are groups.</td></tr>
</table>
    <p>An LDAP group object may contain members that are users and
    members that are groups (called nested or sub groups). The
    <code>AuthLDAPSubGroupAttribute</code> directive identifies the
    labels of group members and the <code>AuthLDAPGroupAttribute</code>
    <code class="directive">AuthLDAPSubGroupAttribute</code> directive identifies the
    labels of group members and the <code class="directive"><a href="#authldapgroupattribute">AuthLDAPGroupAttribute</a></code>
    directive identifies the labels of the user members. Multiple
    attributes can be used by specifying this directive multiple times.
    If not specified, then <code class="module"><a href="../mod/mod_authnz_ldap.html">mod_authnz_ldap</a></code> uses the
@@ -1261,9 +1261,10 @@ objects that are groups during sub-group processing.</td></tr>
</table>
    <p>An LDAP group object may contain members that are users and
    members that are groups (called nested or sub groups). The
    <code>AuthLDAPSubGroupAttribute</code> directive identifies the
    <code class="directive"><a href="#authldapsubgroupattribute">AuthLDAPSubGroupAttribute</a></code>
    directive identifies the
    labels of members that may be sub-groups of the current group
    (as opposed to user members). The <code>AuthLDAPSubGroupClass</code>
    (as opposed to user members). The <code class="directive">AuthLDAPSubGroupClass</code>
    directive specifies the LDAP objectClass values used in verifying that
    these potential sub-groups are in fact group objects. Verified sub-groups
    can then be searched for more user or sub-group members. Multiple
@@ -1360,7 +1361,7 @@ You can of course use search parameters on each of these.</p>
        limited to approximately 8000 characters (the definition of
        <code>MAX_STRING_LEN</code> in the Apache source code). This
        should be more than sufficient for any application. In 2.4.10 and later,
        The word "none" may be used to not use any filter, which may be 
        the keyword <code>none</code> disables the use of a filter; this is
        required by some primitive LDAP servers.</dd>
</dl>

@@ -1391,7 +1392,7 @@ You can of course use search parameters on each of these.</p>
        upgraded to a secure connection on the same port.</dd>
</dl>

    <p>See above for examples of <code class="directive"><a href="#authldapurl">AuthLDAPURL</a></code> URLs.</p>
    <p>See above for examples of <code class="directive"><a href="#authldapurl">AuthLDAPUrl</a></code> URLs.</p>

</div>
</div>
+1 −1
Original line number Diff line number Diff line
<?xml version="1.0"?>
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
<?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
<!-- English Revision: 1683882 -->
<!-- English Revision: 1683882:1736707 (outdated) -->
<!-- French translation : Lucien GENTIS -->
<!-- Reviewed by : Vincent Deffontaines -->

+1 −1
Original line number Diff line number Diff line
@@ -8,6 +8,6 @@

  <variants>
    <variant>en</variant>
    <variant>fr</variant>
    <variant outdated="yes">fr</variant>
  </variants>
</metafile>