]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove on/off arguments from AuthDigestProvider.
authorJoshua Slive <slive@apache.org>
Wed, 16 Nov 2005 17:23:46 +0000 (17:23 +0000)
committerJoshua Slive <slive@apache.org>
Wed, 16 Nov 2005 17:23:46 +0000 (17:23 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@345064 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_auth_digest.xml

index d71b35f13a834d0a62e59ebb7d978182a5bd32b7..b4bfdb5309e837c9dad4929977e9b11a7a7d85de 100644 (file)
 <directivesynopsis>
 <name>AuthDigestProvider</name>
 <description>Sets the authentication provider(s) for this location</description>
-<syntax>AuthDigestProvider On|Off|<var>provider-name</var>
+<syntax>AuthDigestProvider <var>provider-name</var>
 [<var>provider-name</var>] ...</syntax>
-<default>AuthDigestProvider On</default>
+<default>AuthDigestProvider file</default>
 <contextlist><context>directory</context><context>.htaccess</context>
 </contextlist>
 <override>AuthConfig</override>
 <usage>
     <p>The <directive>AuthDigestProvider</directive> directive sets 
     which provider is used to authenticate the users for this location.
-    Setting the value to <code>On</code> will choose the default provider
-    (<code>file</code>). Since the <code>file</code> provider is implemented
-    by the <module>mod_authn_file</module> module, you have to make sure,
-    that the module is present in the server.</p>
+    The default <code>file</code> provider is implemented
+    by the <module>mod_authn_file</module> module.  Make sure
+    that the chosen provider module is present in the server.</p>
 
     <p>See <module>mod_authn_dbm</module> and <module>mod_authn_file</module>
     for providers.</p>
-
-    <p>The value <code>Off</code> clears the provider list and sets it back
-    to the default.</p>
 </usage>
 </directivesynopsis>