Mailing List Archive

cvs commit: apache/htdocs/manual/mod core.html directives.html
marc 97/06/28 18:14:17

Modified: htdocs/manual/mod core.html directives.html
Log:
Add docs for LockFile and fix a few typos.

Revision Changes Path
1.60 +21 -4 apache/htdocs/manual/mod/core.html

Index: core.html
===================================================================
RCS file: /export/home/cvs/apache/htdocs/manual/mod/core.html,v
retrieving revision 1.59
retrieving revision 1.60
diff -C3 -r1.59 -r1.60
*** core.html 1997/06/28 23:57:53 1.59
--- core.html 1997/06/29 01:14:15 1.60
***************
*** 45,50 ****
--- 45,51 ----
<li><A HREF="#listen">Listen</A>
<li><A HREF="#listenbacklog">ListenBacklog</A>
<li><A HREF="#location">&lt;Location&gt;</A>
+ <li><A HREF="#lockfile">LockFile</A>
<li><A HREF="#maxclients">MaxClients</A>
<li><A HREF="#maxkeepaliverequests">MaxKeepAliveRequests</a>
<li><A HREF="#maxrequestsperchild">MaxRequestsPerChild</A>
***************
*** 659,665 ****
<a href="../misc/known_bugs.html#listenbug">Known Bugs</a></p>
<hr>

! <A NAME="listenbacklog"<H2>ListenBacklog</H2></A>
<strong>Syntax:</strong> ListenBacklog <em>backlog</em><br>
<strong>Default:</strong> <code>ListenBacklog 511</code><br>
<strong>Context:</strong> server config<br>
--- 660,666 ----
<a href="../misc/known_bugs.html#listenbug">Known Bugs</a></p>
<hr>

! <A NAME="listenbacklog"><H2>ListenBacklog</H2></A>
<strong>Syntax:</strong> ListenBacklog <em>backlog</em><br>
<strong>Default:</strong> <code>ListenBacklog 511</code><br>
<strong>Context:</strong> server config<br>
***************
*** 728,734 ****
&lt;Location ~ &quot;/(extra|special)/data&quot;&gt;
</pre>

! would match URLs that contained the substring "/extra/data" or
"/special/data".</p>

<p>The <code>Location</code> functionality is especially useful when
--- 729,735 ----
&lt;Location ~ &quot;/(extra|special)/data&quot;&gt;
</pre>

! <p>would match URLs that contained the substring "/extra/data" or
"/special/data".</p>

<p>The <code>Location</code> functionality is especially useful when
***************
*** 746,752 ****
</pre>
<hr>

! <A name="maxclients"><h2>MaxClients directive</h2></A>
<!--%plaintext &lt;?INDEX {\tt MaxClients} directive&gt; -->
<strong>Syntax:</strong> MaxClients <em>number</em><br>
<strong>Default:</strong> <code>MaxClients 256</code><br>
--- 747,769 ----
</pre>
<hr>

! <A NAME="lockfile"><H2>LockFile</H2></A>
! <strong>Syntax:</strong> LockFile <em>filename</em><BR>
! <strong>Default:</strong> <code>LockFile logs/accept.lock</code><BR>
! <strong>Context:</strong> server config<BR>
! <strong>Status:</strong> core<P>
!
! The LockFile directive sets the path to the lockfile used when
! Apache is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or
! USE_FLOCK_SERIALIZED_ACCEPT. This directive should normally be
! left at its default value. The main reason for changing it is if
! the <code>logs</code> directory is NFS mounted, since the lockfile
! should be stored on a local disk if possible. The PID of the main
! server process is automatically appended to the filename.
!
! <P><HR>
!
! <A name="maxclients"><h2>MaxClients</h2></A>
<!--%plaintext &lt;?INDEX {\tt MaxClients} directive&gt; -->
<strong>Syntax:</strong> MaxClients <em>number</em><br>
<strong>Default:</strong> <code>MaxClients 256</code><br>
***************
*** 1048,1054 ****

See also <A HREF="#accessconfig">AccessConfig</A>.<p><hr>

! <A name="rlimit">
<A name="rlimitcpu"><h2>RLimitCPU directive</h2></A>
<!--%plaintext &lt;?INDEX {\tt RLimitCPU} directive&gt; -->
<strong>Syntax:</strong> RLimitCPU <em># or 'max'</em> <em>[# or 'max']</em><br>
--- 1065,1071 ----

See also <A HREF="#accessconfig">AccessConfig</A>.<p><hr>

! <A name="rlimit"> </A>
<A name="rlimitcpu"><h2>RLimitCPU directive</h2></A>
<!--%plaintext &lt;?INDEX {\tt RLimitCPU} directive&gt; -->
<strong>Syntax:</strong> RLimitCPU <em># or 'max'</em> <em>[# or 'max']</em><br>



1.22 +1 -0 apache/htdocs/manual/mod/directives.html

Index: directives.html
===================================================================
RCS file: /export/home/cvs/apache/htdocs/manual/mod/directives.html,v
retrieving revision 1.21
retrieving revision 1.22
diff -C3 -r1.21 -r1.22
*** directives.html 1997/06/28 23:57:54 1.21
--- directives.html 1997/06/29 01:14:16 1.22
***************
*** 107,112 ****
--- 107,113 ----
<li><A HREF="mod_dld.html#loadfile">LoadFile</A>
<li><A HREF="mod_dld.html#loadmodule">LoadModule</A>
<li><A HREF="core.html#location">&lt;Location&gt;</A>
+ <li><A HREF="core.html#lockfile">LockFile</A>
<li><A HREF="mod_log_config.html#logformat">LogFormat</A>
<li><A HREF="core.html#maxclients">MaxClients</A>
<li><A HREF="core.html#maxkeepaliverequests">MaxKeepAliveRequests</A>