From: Joshua Slive Date: Wed, 16 Nov 2005 17:26:43 +0000 (+0000) Subject: Merge r345064, r345065 from trunk: X-Git-Tag: 2.1.10~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02e954dd67de52ed4d9661e1a003f2bafdb6fbd4;p=thirdparty%2Fapache%2Fhttpd.git Merge r345064, r345065 from trunk: Remove on/off arguments from AuthDigestProvider. Provide at least a basic roadmap to the aaa modules as part of the tutorial. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@345066 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/howto/auth.xml b/docs/manual/howto/auth.xml index 3e79237173f..ea6531886d5 100644 --- a/docs/manual/howto/auth.xml +++ b/docs/manual/howto/auth.xml @@ -33,27 +33,54 @@
Introduction 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.