From: Ken Coar Date: Sat, 7 Nov 1998 00:10:40 +0000 (+0000) Subject: Make it more clear that AuthName takes a single argument, and fix X-Git-Tag: 1.3.4~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=62ee3cbe9508b1bc3f605116f7fd4b7fa97fe490;p=apache Make it more clear that AuthName takes a single argument, and fix a broken example in the FAQ. PR: 3360 Submitted by: Jonathan Hartzog git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82360 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/FAQ.html b/docs/manual/misc/FAQ.html index ef915d71c9..7c19cfeaf5 100644 --- a/docs/manual/misc/FAQ.html +++ b/docs/manual/misc/FAQ.html @@ -14,7 +14,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.134 $ ($Date: 1998/11/06 17:28:05 $) + $Revision: 1.135 $ ($Date: 1998/11/07 00:10:38 $)

The latest version of this FAQ is always available from the main @@ -1704,7 +1704,7 @@
AuthUserFile /usr/local/apache/conf/htpasswd.users
- AuthName special directory + AuthName "special directory"
require valid-user
diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index a145c81bc9..aca2c208fd 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -281,7 +281,8 @@ Allow use of the directives controlling specific directory features This directive sets the name of the authorization realm for a directory. This realm is given to the client so that the user knows which username and -password to send. +password to send. AuthName takes a single argument; +if the realm name contains spaces, it must be enclosed in quotation marks. It must be accompanied by AuthType and require directives, and directives such as AuthUserFile and