slive 00/09/23 13:11:27
Modified: htdocs/manual/mod mod_access.html index.html index-bytype.html Log: Conversion of first module (alphabetically) to new doc format. I likely won't get through this before the next 1.3 release, but I guess some docs in a consistent format is better than no docs in a consistent format. Revision Changes Path 1.22 +49 -19 httpd-docs-1.3/htdocs/manual/mod/mod_access.html Index: mod_access.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_access.html,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- mod_access.html 2000/09/12 02:29:13 1.21 +++ mod_access.html 2000/09/23 20:11:26 1.22 @@ -16,11 +16,29 @@ <H1 ALIGN="CENTER">Module mod_access</H1> <P> -This module is contained in the <CODE>mod_access.c</CODE> file, and -is compiled in by default. It provides access control based on client -hostname or IP address. +This module provides access control based on client hostname or IP +address. </P> +<P><A +HREF="module-dict.html#Status" +REL="Help" +><STRONG>Status:</STRONG></A> Base +<BR> +<A +HREF="module-dict.html#SourceFile" +REL="Help" +><STRONG>Source File:</STRONG></A> mod_access.c +<BR> +<A +HREF="module-dict.html#ModuleIdentifier" +REL="Help" +><STRONG>Module Identifier:</STRONG></A> access_module +</P> + + +<H2>Directives</H2> + <UL> <LI><A HREF="#allow">Allow</A> <LI><A HREF="#allowfromenv">Allow from env=</A> @@ -28,10 +46,10 @@ <LI><A HREF="#denyfromenv">Deny from env=</A> <LI><A HREF="#order">Order</A> </UL> -<DL> -<DD>See also <A HREF="core.html#satisfy">Satisfy</A> + +<P>See also <A HREF="core.html#satisfy">Satisfy</A> and <A HREF="core.html#require">Require</A>. -</DL> + <HR> @@ -91,13 +109,17 @@ would not match <CODE>foobar.edu</CODE>. </P> <P> -See also <A HREF="#deny">Deny</A>, <A HREF="#order">Order</A>, and -<A HREF="mod_browser.html#browsermatch">BrowserMatch</A>. +See also <A HREF="#allowfromenv">Allow from env=</A>, <A +HREF="#deny">Deny</A> and <A HREF="#order">Order</A>. </P> +<HR> + +<H2><A NAME="allowfromenv">Allow from env= directive</A></H2> + <P> -<A NAME="allowfromenv"><STRONG>Syntax:</STRONG> Allow from - env=<EM>variablename</EM></A><BR> +<STRONG>Syntax:</STRONG> Allow from + env=<EM>variablename</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -127,7 +149,7 @@ Example: </P> <BLOCKQUOTE><PRE> -BrowserMatch ^KnockKnock/2.0 let_me_in +SetEnvIf User-Agent ^KnockKnock/2.0 let_me_in <Directory /docroot> Order Deny,Allow Deny from all @@ -137,8 +159,8 @@ In this case browsers with the user-agent string <TT>KnockKnock/2.0</TT> will be allowed access, and all others will be denied. <P> -See also <A HREF="#denyfromenv">Deny from env</A> -and <A HREF="#order">Order</A>. +See also <A HREF="#denyfromenv">Deny from env=</A>, <A HREF="#order">Order</A> +and <A HREF="mod_setenvif.html#SetEnvIf">SetEnvIf</A>. </P> <HR> @@ -198,12 +220,17 @@ would not match <CODE>foobar.edu</CODE>. </P> <P> -See also <A HREF="#allow">Allow</A> and <A HREF="#order">Order</A>. +See also <A HREF="#denyfromenv">Deny from env=</A>, <A +HREF="#allow">Allow</A> and <A HREF="#order">Order</A>. </P> +<HR> + +<H2><A NAME="denfromenv">Deny from env= directive</A></H2> + <P> -<A NAME="denyfromenv"><STRONG>Syntax:</STRONG> Deny from - env=<EM>variablename</EM></A><BR> +<STRONG>Syntax:</STRONG> Deny from + env=<EM>variablename</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -233,7 +260,7 @@ Example: </P> <BLOCKQUOTE><PRE> -BrowserMatch ^BadRobot/0.9 go_away +SetEnvIf User-Agent ^BadRobot/0.9 go_away <Directory /docroot> Order Allow,Deny Allow from all @@ -244,8 +271,9 @@ be denied access, and all others will be allowed. <P> -See also <A HREF="#allowfromenv">Allow from env</A> -and <A HREF="#order">Order</A>. +See also <A HREF="#allowfromenv">Allow from env=</A>, <A +HREF="#order">Order</A> and <A +HREF="mod_setenvif.html#SetEnvIf">SetEnvIf</A>. </P> <HR> @@ -313,6 +341,8 @@ Hosts in the ncsa.uiuc.edu domain are allowed access; all other hosts are denied access. </P> + +<P>See also: <A HREF="#deny">Deny</A> and <A HREF="#allow">Allow</A>. <!--#include virtual="footer.html" --> </BODY> </HTML> 1.31 +1 -1 httpd-docs-1.3/htdocs/manual/mod/index.html Index: index.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/index.html,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- index.html 2000/09/10 12:36:39 1.30 +++ index.html 2000/09/23 20:11:26 1.31 @@ -29,7 +29,7 @@ <DT><A HREF="core.html">Core</A> <DD>Core Apache features. <DT><A HREF="mod_access.html">mod_access</A> -<DD>Host based access control. +<DD>Access control based on client hostname or IP address. <DT><A HREF="mod_actions.html">mod_actions</A> Apache 1.1 and later. <DD>Filetype/method-based script execution <DT><A HREF="mod_alias.html">mod_alias</A> 1.3 +1 -1 httpd-docs-1.3/htdocs/manual/mod/index-bytype.html Index: index-bytype.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/index-bytype.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- index-bytype.html 2000/09/10 12:39:37 1.2 +++ index-bytype.html 2000/09/23 20:11:26 1.3 @@ -82,7 +82,7 @@ <DL> <DT><A HREF="mod_access.html">mod_access</A> -<DD>Host based access control. +<DD>Access control based on client hostname or IP address. <DT><A HREF="mod_auth.html">mod_auth</A> <DD>User authentication using text files. <DT><A HREF="mod_auth_dbm.html">mod_auth_dbm</A>