rbb 99/03/06 16:50:28
Modified: pthreads/conf highperformance.conf-dist httpd.conf-dist Log: changes to default config file, so it works with the apr code. Revision Changes Path 1.2 +1 -1 apache-apr/pthreads/conf/highperformance.conf-dist Index: highperformance.conf-dist =================================================================== RCS file: /home/cvs/apache-apr/pthreads/conf/highperformance.conf-dist,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- highperformance.conf-dist 1999/01/21 23:08:29 1.1 +++ highperformance.conf-dist 1999/03/07 00:50:28 1.2 @@ -14,7 +14,7 @@ Port 80 ServerRoot @@ServerRoot@@ DocumentRoot @@ServerRoot@@/htdocs -MaxClients 150 +MaxClients 8 StartServers 5 MinSpareServers 5 MaxSpareServers 10 1.3 +12 -5 apache-apr/pthreads/conf/httpd.conf-dist Index: httpd.conf-dist =================================================================== RCS file: /home/cvs/apache-apr/pthreads/conf/httpd.conf-dist,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- httpd.conf-dist 1999/02/07 06:29:01 1.2 +++ httpd.conf-dist 1999/03/07 00:50:28 1.3 @@ -145,13 +145,20 @@ StartServers 5 # +# Limit on the number of threads per child process. The number of clients +# who can simultaneously connect is this number times the number of MaxClients. +# If this limit is ever reached, clients will be LOCKED out, so it should +# not be set too low. +# +ThreadsPerChild 8 + +# # Limit on total number of servers running, i.e., limit on the number -# of clients who can simultaneously connect --- if this limit is ever -# reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW. -# It is intended mainly as a brake to keep a runaway server from taking -# the system with it as it spirals down... +# who can simultaneously connect is this number times the number of MaxClients. +# If this limit is ever reached, clients will be LOCKED out, so it should +# not be set too low. # -MaxClients 150 +MaxClients 8 # # MaxRequestsPerChild: the number of requests each child process is