You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2001/08/27 22:55:10 UTC

cvs commit: httpd-2.0/docs/conf highperformance-std.conf httpd-std.conf

jerenkrantz    01/08/27 13:55:10

  Modified:    docs/conf highperformance-std.conf httpd-std.conf
  Log:
  As the worker MPM is really an alternative to the threaded MPM                  (and hopefully it'll be a replacement), the httpd.conf settings                 are identical.
  Submitted by:	Aaron Bannert <aa...@clove.org>
  Reviewed by:	Justin Erenkrantz
  
  Revision  Changes    Path
  1.6       +8 -0      httpd-2.0/docs/conf/highperformance-std.conf
  
  Index: highperformance-std.conf
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/conf/highperformance-std.conf,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- highperformance-std.conf	2001/08/12 15:44:18	1.5
  +++ highperformance-std.conf	2001/08/27 20:55:09	1.6
  @@ -34,6 +34,14 @@
   ThreadsPerChild 25
   </IfModule>
   
  +<IfModule worker.c>
  +MaxClients       8
  +StartServers     3
  +MinSpareThreads  5
  +MaxSpareThreads 10
  +ThreadsPerChild 25
  +</IfModule>
  +
   # Assume no memory leaks at all
   MaxRequestsPerChild 0
   
  
  
  
  1.45      +16 -0     httpd-2.0/docs/conf/httpd-std.conf
  
  Index: httpd-std.conf
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/conf/httpd-std.conf,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- httpd-std.conf	2001/08/23 15:17:02	1.44
  +++ httpd-std.conf	2001/08/27 20:55:09	1.45
  @@ -130,6 +130,22 @@
   MaxRequestsPerChild  0
   </IfModule>
   
  +# worker MPM
  +# StartServers: initial number of server processes to start
  +# MaxClients: maximum number of server processes allowed to start
  +# MinSpareThreads: minimum number of worker threads which are kept spare
  +# MaxSpareThreads: maximum number of worker threads which are kept spare
  +# ThreadsPerChild: constant number of worker threads in each server process
  +# MaxRequestsPerChild: maximum number of requests a server process serves
  +<IfModule worker.c>
  +StartServers         3
  +MaxClients           8
  +MinSpareThreads      5
  +MaxSpareThreads     75 
  +ThreadsPerChild     25
  +MaxRequestsPerChild  0
  +</IfModule>
  +
   # perchild MPM
   # NumServers: constant number of server processes
   # StartThreads: initial number of worker threads in each server process