]> granicus.if.org Git - apache/commitdiff
Conf file cleanup
authorBradley Nicholes <bnicholes@apache.org>
Mon, 29 Oct 2001 22:52:53 +0000 (22:52 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Mon, 29 Oct 2001 22:52:53 +0000 (22:52 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91689 13f79535-47bb-0310-9956-ffa450edef68

docs/conf/httpd-nw.conf

index c5724fafcb0d0fae94a127f81f381b1622e81c47..184ca8706f23209769c0a447b8da34e4c05b3cce 100644 (file)
 #
 ServerRoot "@@ServerRoot@@"
 
-#
-# PidFile: The file in which the server should record its process
-# identification number when it starts.
-#
-PidFile logs/httpd.pid
-
 #
 # Timeout: The number of seconds before receives and sends time out.
 #
@@ -86,20 +80,22 @@ KeepAliveTimeout 15
 ## 
 
 # NetWare MPM
-# ThreadsPerChild ...... constant number of worker threads in the server process
-# MaxRequestsPerChild .. maximum  number of requests a server process serves
-
 # ThreadStackSize ...... Stack size allocated for each worker thread
 # StartThreads ......... Number of worker threads launched at server startup
 # MinSpareThreads ...... Minimum number of idle threads, to handle request spikes
 # MaxSpareThreads ...... Maximum number of idle threads
 # MaxThreads ........... Maximum number of worker threads alive at the same time
+# MaxRequestsPerChild .. Maximum  number of requests a thread serves. It is 
+#                         recommended that the default value of 0 be set for this
+#                         directive on NetWare.  This will allow the thread to 
+#                         continue to service requests indefinitely.                          
 <IfModule mpm_netware.c>
 ThreadStackSize 65536
 StartThreads 250
 MinSpareThreads 25
 MaxSpareThreads 250
 MaxThreads 1000
+MaxRequestsPerChild  0
 </IfModule>
 
 #