From: Joshua Slive Date: Wed, 16 Nov 2005 17:23:46 +0000 (+0000) Subject: Remove on/off arguments from AuthDigestProvider. X-Git-Tag: 2.3.0~2754 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=586be46115f0ced44aba7dfef554e01a5ec36a85;p=thirdparty%2Fapache%2Fhttpd.git Remove on/off arguments from AuthDigestProvider. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@345064 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_auth_digest.xml b/docs/manual/mod/mod_auth_digest.xml index d71b35f13a8..b4bfdb5309e 100644 --- a/docs/manual/mod/mod_auth_digest.xml +++ b/docs/manual/mod/mod_auth_digest.xml @@ -122,9 +122,9 @@ AuthDigestProvider Sets the authentication provider(s) for this location -AuthDigestProvider On|Off|provider-name +AuthDigestProvider provider-name [provider-name] ... -AuthDigestProvider On +AuthDigestProvider file directory.htaccess AuthConfig @@ -132,16 +132,12 @@

The AuthDigestProvider directive sets which provider is used to authenticate the users for this location. - Setting the value to On will choose the default provider - (file). Since the file provider is implemented - by the mod_authn_file module, you have to make sure, - that the module is present in the server.

+ The default file provider is implemented + by the mod_authn_file module. Make sure + that the chosen provider module is present in the server.

See mod_authn_dbm and mod_authn_file for providers.

- -

The value Off clears the provider list and sets it back - to the default.