You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2002/11/20 13:50:58 UTC

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

trawick     2002/11/20 04:50:57

  Modified:    docs/conf highperformance-std.conf
  Log:
  fix the sample worker configuration...  it didn't make any sense
  previously, and you'd see something like this when starting Apache
  with it:
  
  WARNING: MaxClients (8) must be at least as large
   large as ThreadsPerChild (25). Automatically
   increasing MaxClients to 25.
  
  PR:              10430
  
  Revision  Changes    Path
  1.10      +6 -5      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.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- highperformance-std.conf	19 Nov 2001 18:07:27 -0000	1.9
  +++ highperformance-std.conf	20 Nov 2002 12:50:57 -0000	1.10
  @@ -27,11 +27,12 @@
   </IfModule>
   
   <IfModule worker.c>
  -MaxClients       8
  -StartServers     3
  -MinSpareThreads  5
  -MaxSpareThreads 10
  -ThreadsPerChild 25
  +StartServers         2
  +MaxClients         150
  +MinSpareThreads     25
  +MaxSpareThreads     75 
  +ThreadsPerChild     25
  +MaxRequestsPerChild  0
   </IfModule>
   
   # Assume no memory leaks at all