From: pcs Date: Wed, 16 Apr 1997 09:13:05 +0000 (+0000) Subject: Add missing link targets [Martin.Kraemer@mch.sni.de]. X-Git-Tag: APACHE_1_2b9~47 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1945d0b7ea8210e2f2b9f31cb0347cc8006be636;p=apache Add missing link targets [Martin.Kraemer@mch.sni.de]. Module is not compiled in by default. Update directive descriptions to use standard manual page format. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@77911 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_auth_anon.html b/docs/manual/mod/mod_auth_anon.html index d34d134586..499b539a55 100644 --- a/docs/manual/mod/mod_auth_anon.html +++ b/docs/manual/mod/mod_auth_anon.html @@ -1,15 +1,18 @@ - - -Module mod_auth_anon.c - - + + + +Apache module mod_auth_anon.c + +

Module mod_auth_anon

This module is contained in the mod_auth_anon.c file and -is compiled in by default. It is only available in Apache 1.1 and -later. -

+is not compiled in by default. It is only available in Apache 1.1 and +later. It allows "anonymous" user access to authenticated areas. + +

Summary

+ It does access control in a manner similar to anonymous-ftp sites; i.e. have a 'magic' user id 'anonymous' and the email address as a password. These email addresses can be logged. @@ -22,7 +25,7 @@ funny URL pre/postfixes, it is completely browser independent and it allows users to share URLs.

-Full description / +Directives / Example / Compile time options / RevisionHistory / @@ -30,12 +33,26 @@ allows users to share URLs. Sourcecode

-


Full description of all tokens

-
+

Directives

+ + +
+ +

Anonymous

+ +Syntax: Anonymous user user ...
+Default: none
+Context: directory, .htaccess
+Override: AuthConfig
+Status: Extension
+Module: mod_auth_anon

-

-Anonymous < Space separated list > -
A list of one or more 'magic' userIDs which are allowed access without password verification. The userIDs are space separated. It is possible to use the ' and " quotes to allow a space in @@ -53,37 +70,57 @@ Anonymous < Space separated list > This would allow the user to enter without password verification by using the userId's 'anonymous', 'AnonyMous','Not Registered' and 'I Don't Know'. -
+
+ +

Anonymous_LogEmail

+Syntax: Anonymous_LogEmail on | off
+Default: off
+Context: directory, .htaccess
+Override: AuthConfig
+Status: Extension
+Module: mod_auth_anon

-

-Anonymous_LogEmail < on | off > -
When set 'on', the default, the 'password' entered (which hopefully contains a sensible email address) is logged in the httpd-log file. -
+
-
-Anonymous_VerifyEmail < on | off > -
- When set 'on', the default is 'off', the 'password' entered is +

Anonymous_VerifyEmail

+Syntax: Anonymous on | off
+Default: Anonymous_VerifyEmail off
+Context: directory, .htaccess
+Override: AuthConfig
+Status: Extension
+Module: mod_auth_anon

+ + When set 'on' the 'password' entered is checked for at least one '@' and a '.' to encourage users to enter - valid email addresses (see the above Auth_LogEmail. -

+ valid email addresses (see the above Auth_LogEmail). + +
-
-Anonymous_NoUserID < on | off > -
- When set 'on', the default is 'off', users can leave +

Anonymous_NoUser

+Syntax: Anonymous_NoUser on | off
+Default: Anonymous_NoUser off
+Context: directory, .htaccess
+Override: AuthConfig
+Status: Extension
+Module: mod_auth_anon

+ + When set 'on', users can leave the userID (and perhaps the password field) empty. This can be very convenient for MS-Explorer users who can just hit return or click directly on the OK button; which seems a natural reaction. -

-
-Anonymous_Authoritative < on | off > -
- Default is 'off'. When set 'on', there is no +

Anonymous_Authoritative

+Syntax: Anonymous_Authoritative on | off
+Default: Anonymous_Authoritative off
+Context: directory, .htaccess
+Override: AuthConfig
+Status: Extension
+Module: mod_auth_anon

+ + When set 'on', there is no fall-through to other authorization methods. So if a userID does not match the values specified in the Anonymous directive, access is denied. @@ -92,10 +129,6 @@ Anonymous_NoUserID < on | off > it on. And remember that it is the linking order of the modules (in the Configuration / Make file) which details the order in which the Authorization modules are queried. -

- -
-

Example