]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
|From Martin.Kraemer@mch.sni.de Mon Sep 15 21:04:46 1997
authordgaudet <dgaudet@unknown>
Tue, 16 Sep 1997 04:06:03 +0000 (04:06 +0000)
committerdgaudet <dgaudet@unknown>
Tue, 16 Sep 1997 04:06:03 +0000 (04:06 +0000)
|Date: Fri, 5 Sep 1997 14:22:32 +0200 (MET DST)
|From: Martin Kraemer <Martin.Kraemer@mch.sni.de>
|Reply-To: new-httpd@apache.org
|To: Apache Mailing List <new-httpd@apache.org>
|Subject: [DOC] mod_auth_anon.html corrections
|
|The mod_auth_anon.html documentation describes the default of
|the Anonymous_LogEmail and Anonymous_MustGiveEmail being "off", but in
|the code, the default seems to be "on".
|
|The "Example" section could be improved because when used as-is, the
|server returns a [500] server error (configuration error:  couldn't check
|user.  No user file?). I added a comment to clarify things.

Submitted by: Martin Kraemer
Reviewed by: Dean Gaudet

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79267 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_auth_anon.html

index 333fd6b99e89e9626d4dcbe79f4e41ca387fa0f4..5e61f34af204a9b81c0f7cef4156834f44f7e400 100644 (file)
@@ -101,7 +101,7 @@ allows users to share URLs.
 
 <h2><A name="LogEmail">Anonymous_LogEmail directive</A></h2>
 <strong>Syntax:</strong> Anonymous_LogEmail <em>on | off</em><br>
-<strong>Default:</strong> <code>Anonymous_LogEmail off</code><br>
+<strong>Default:</strong> <code>Anonymous_LogEmail on</code><br>
 <strong>Context:</strong> directory, .htaccess<br>
 <strong>Override:</strong> AuthConfig<br>
 <strong>Status:</strong> Extension<br>
@@ -114,7 +114,7 @@ allows users to share URLs.
 <h2><A name="MustGiveEmail">Anonymous_MustGiveEmail directive</A></h2>
 <!--%plaintext &lt;?INDEX {\tt Anonymous_MustGiveEmail} directive&gt; -->
 <strong>Syntax:</strong> Anonymous_MustGiveEmail <em>on</em> | <em>off</em><br>
-<strong>Default:</strong> <code>Anonymous_MustGiveEmail off</code><br>
+<strong>Default:</strong> <code>Anonymous_MustGiveEmail on</code><br>
 <strong>Context:</strong> directory, .htaccess<br>
 <strong>Override:</strong> AuthConfig<br>
 <strong>Status:</strong> Extension<br>
@@ -170,29 +170,33 @@ The password entered must be a valid email address, ie. contain at least one '@'
 <li>
 The userID must be one of <code>anonymous guest www test welcome</code>
 and comparison is <b>not</b> case sensitive.
-<code>&lt;directory /web/docs/public&gt;</code>
 <li>
-And the Email addresses entered in the passswd field are logged to
+And the Email addresses entered in the passwd field are logged to
 the httpd-log file
 (<code>Anonymous_LogEmail</code>)
 </ul>
 <p>
 Excerpt of access.conf:
 <blockquote><code>
-Anonymous        anonymous guest www test welcome<p>
+Anonymous_NoUserId      off<br>
 Anonymous_MustGiveEmail on<br>
 Anonymous_VerifyEmail    on<br>
-Anonymous_NoUserId      off<br>
 Anonymous_LogEmail      on<br>
+Anonymous        anonymous guest www test welcome<p>
 <p>
 AuthName                Use 'anonymous' & Email address for guest entry<br>
-AuthType                basic<p>
-
-</code>
+AuthType                basic
+<p>
+# An AuthUserFile/AuthDBUserFile/AuthDBMUserFile<br>
+# directive must be specified, or use<br>
+# Anonymous_Authoritative for public access.<br>
+# In the .htaccess for the public directory, add:<br>
+&lt;Files *&gt;<br>
 order deny,allow          <br>
 allow from all            <br>
 <p>
 require valid-user        <br>
+&lt;/Files&gt;<br>
 </code></blockquote>