Commit 178e1f0a authored by Bradley Nicholes's avatar Bradley Nicholes
Browse files

Conf file cleanup


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91689 13f79535-47bb-0310-9956-ffa450edef68
parent 92e5cb67
Loading
Loading
Loading
Loading
+5 −9
Original line number Diff line number Diff line
@@ -51,12 +51,6 @@
#
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>

#