]> granicus.if.org Git - apache/commitdiff
Reviewed by: Brian Behlendorf
authorbrian <brian@unknown>
Mon, 9 Dec 1996 04:09:19 +0000 (04:09 +0000)
committerbrian <brian@unknown>
Mon, 9 Dec 1996 04:09:19 +0000 (04:09 +0000)
Obtained from:  Martin.Kraemer@mch.sni.de

Typos, clarifications, and overall improvements.

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

docs/manual/mod/core.html
docs/manual/mod/mod_include.html
docs/manual/mod/mod_proxy.html

index e6d39f18feef2c47515e00b08e8c7c20f2e4b6f4..af923157398365aa4e41080d6cb7f5fad4927563 100644 (file)
@@ -861,7 +861,7 @@ AuthType Basic<br>
 AuthName somedomain<br>
 AuthUserFile /web/users<br>
 AuthGroupFile /web/groups<br>
-Limit &lt;GET POST&gt;<br>
+&lt;Limit GET POST&gt;<br>
 require group admin<br>
 &lt;/Limit&gt;
 </code></blockquote>
@@ -958,11 +958,14 @@ See also <A HREF="#rlimitmem">RLimitMEM</A> or <A HREF="#rlimitcpu">RLimitCPU</A
 
 <A name="satisfy"><h2>Satisfy</h2></A>
 <!--%plaintext &lt;?INDEX {\tt Satisfy} directive&gt; -->
-<strong>Syntax:</strong><br>
+<strong>Syntax:</strong> Satisfy <em>'any' or 'all'</em><br>
 <strong>Context:</strong> server config, virtual host, directory, .htaccess<br>
 <strong>Status:</strong> core<br>
 <strong>Compatibility:</strong> Satisfy is only available in Apache 1.2 and later<p>
 
+Access policy if both allow and require used. The parameter can be either
+<em>'all'</em> or <em>'any'</em>.
+
 <p><hr>
 
 <A name="sendbuffersize"><h2>SendBufferSize</h2></A>
@@ -1026,7 +1029,7 @@ were <code>monster.wibble.com</code>.<p><hr>
 <strong>Compatibility:</strong> ServerPath is only available in Apache
 1.1 and later.<p>
 
-The ServerAlias directive sets the legacy URL pathname for a host, for
+The ServerPath directive sets the legacy URL pathname for a host, for
 use with <a href="../host.html">Host-header based virtual hosts</a>.
 <hr>
 
@@ -1040,7 +1043,8 @@ use with <a href="../host.html">Host-header based virtual hosts</a>.
 The ServerRoot directive sets the directory in which the server lives.
 Typically it will contain the subdirectories <code>conf/</code> and
 <code>logs/</code>. Relative paths for other configuration files are taken
-as relative to this directory.<p><hr>
+as relative to this directory.<br>
+See also <a href="../invoking.html">the <code>-d</code> option to httpd</a>.<p><hr>
 
 <A name="servertype"><h2>ServerType directive</h2></A>
 <!--%plaintext &lt;?INDEX {\tt ServerType} directive&gt; -->
@@ -1146,7 +1150,9 @@ dangers are.<p><hr>
 <strong>Syntax:</strong> &lt;VirtualHost <em>addr</em>[:<em>port</em>]&gt; ...
 &lt;/VirtualHost&gt; <br>
 <strong>Context:</strong> server config<br>
-<strong>Status:</strong> Core. <p>
+<strong>Status:</strong> Core.<br>
+<strong>Compatibility:</strong> Non-IP address-based Virtual Hosting is
+only available in Apache 1.2 and later.<p>
 
 &lt;VirtualHost&gt; and &lt;/VirtualHost&gt; are used to enclose a group of
 directives which will apply only to a particular virtual host.
@@ -1169,13 +1175,13 @@ TransferLog logs/host.foo.com-access_log <br>
 &lt;/VirtualHost&gt;
 </code></blockquote>
 
-Currently, each VirtualHost must correspond to a different IP address for
-the server, so the server machine must be configured to accept IP packets for
-multiple addresses. If the machine does not have multiple network interfaces,
-then this can be accomplished with the <code>ifconfig alias</code> command
-(if your OS supports it), or with kernel patches like
-<A HREF="../misc/vif-info.html">VIF</A> (for SunOS(TM) 4.1.x).<p>
-
+Each VirtualHost must correspond to a different IP address or a
+different host name for the server, in the latter case the server
+machine must be configured to accept IP packets for multiple
+addresses. (If the machine does not have multiple network interfaces,
+then this can be accomplished with the <code>ifconfig alias</code>
+command (if your OS supports it), or with kernel patches like <A
+HREF="../misc/vif-info.html">VIF</A> (for SunOS(TM) 4.1.x)).<p>
 
 <p><strong>See also:</strong>
 <A HREF="../virtual-host.html">Information on Virtual Hosts.
index 4052baca610317dbca175087a0c48030b35d810b..58ff88079f252382e9ae532753212f7a18a161cf 100644 (file)
@@ -224,13 +224,14 @@ elements are:
     Regular expressions have the same syntax as those found in the
     Unix egrep command.
 
-<DT>( <I>test_condition</I> )<DD>true if <I>test_condition</I> is true 
-<DT>! <I>test_condition</I><DD>true if <I>test_condition</I> is false
-    <I>test_condition1</I> and <I>test_condition2</I> are true
-<DT><I>test_condition1</I> && <I>test_condition2</I><DD>true if both
-    <I>test_condition1</I> and <I>test_condition2</I> are true
-<DT><I>test_condition1</I> || <I>test_condition2</I><DD>true if either
-    <I>test_condition1</I> or <I>test_condition2</I> is true
+<DT>( <I>test_condition</I> )
+       <DD>true if <I>test_condition</I> is true 
+<DT>! <I>test_condition</I>
+       <DD>true if <I>test_condition</I> is false
+<DT><I>test_condition1</I> && <I>test_condition2</I>
+       <DD>true if both <I>test_condition1</I> and <I>test_condition2</I> are true
+<DT><I>test_condition1</I> || <I>test_condition2</I>
+       <DD>true if either <I>test_condition1</I> or <I>test_condition2</I> is true
 </DL>
 
 <P> "<I>=</I>" and "</I>!=</I>" bind more tightly than "<I>&&</I>" and "<I>||</I>".
index 9bb11a146e3e7822eb5ae57af99622bf284bb606..b07975723ed1e10df11be95b24e01398931d50c6 100644 (file)
@@ -71,9 +71,9 @@ partial URL for the remote server. Syntax:
 <pre>
   &lt;remote-server&gt; = &lt;protocol&gt;://&lt;hostname&gt;[:port]
 </pre>
-&lt;protocol&gt; is the protocol that should be used to communicate with the
-remote
-server; only "http" is supported by this module.
+
+&lt;protocol&gt; is the protocol that should be used to communicate
+with the remote server; only "http" is supported by this module.
 
 Example:
 <pre>
@@ -186,7 +186,7 @@ then the latter takes precedence.
 Apache 1.1 and later.<p>
 
 If the document is fetched via a protocol that does not support expirytimes,
-then use &lt;time&gt; as the expiry time.
+then use &lt;time&gt; hours as the expiry time.
 <a href="#cachemaxexpire">CacheMaxExpire</a> does <strong>not</strong>
 override.