Commit 9bd54e22 authored by Ken Coar's avatar Ken Coar
Browse files

	Make it more clear that AuthName takes a single argument, and fix
	a broken example in the FAQ.

PR:		3360
Submitted by:	Jonathan Hartzog <jhartzog@w00f.com>


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82360 13f79535-47bb-0310-9956-ffa450edef68
parent fcea1420
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
  <!--#include virtual="header.html" -->
  <H1 ALIGN="CENTER">Apache Server Frequently Asked Questions</H1>
  <P>
  $Revision: 1.134 $ ($Date: 1998/11/06 17:28:05 $)
  $Revision: 1.135 $ ($Date: 1998/11/07 00:10:38 $)
  </P>
  <P>
  The latest version of this FAQ is always available from the main
@@ -1704,7 +1704,7 @@
    <BR>
    AuthUserFile /usr/local/apache/conf/htpasswd.users
    <BR>
    AuthName special directory
    AuthName "special directory"
    <BR>
    require valid-user
    <BR>
+2 −1
Original line number Diff line number Diff line
@@ -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.  <SAMP>AuthName</SAMP> takes a single argument;
if the realm name contains spaces, it must be enclosed in quotation marks.
It must be accompanied by <A HREF="#authtype">AuthType</A> and
<A HREF="#require">require</A> directives, and directives such as
<A HREF="mod_auth.html#authuserfile">AuthUserFile</A> and