Commit 30cac95b1ae7c3e55ccd57d4e2de6f06a7be2f1b

Authored by Michael Joseph
1 parent 9b672fc3

beefed up apache settings


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1068 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 5 additions and 5 deletions
etc/httpd.conf
... ... @@ -136,14 +136,14 @@ KeepAliveTimeout 15
136 136 # a new spare. If there are more than MaxSpareServers, some of the
137 137 # spares die off. The default values are probably OK for most sites.
138 138 #
139   -MinSpareServers 10
140   -MaxSpareServers 20
  139 +MinSpareServers 100
  140 +MaxSpareServers 200
141 141  
142 142 #
143 143 # Number of servers to start initially --- should be a reasonable ballpark
144 144 # figure.
145 145 #
146   -StartServers 10
  146 +StartServers 100
147 147  
148 148 #
149 149 # Limit on total number of servers running, i.e., limit on the number
... ... @@ -152,7 +152,7 @@ StartServers 10
152 152 # It is intended mainly as a brake to keep a runaway server from taking
153 153 # the system with it as it spirals down...
154 154 #
155   -MaxClients 300
  155 +MaxClients 500
156 156  
157 157 #
158 158 # MaxRequestsPerChild: the number of requests each child process is
... ... @@ -168,7 +168,7 @@ MaxClients 300
168 168 # an initial request and 10 subsequent "keptalive" requests, it
169 169 # would only count as 1 request towards this limit.
170 170 #
171   -MaxRequestsPerChild 0
  171 +MaxRequestsPerChild 10
172 172  
173 173 #
174 174 # Listen: Allows you to bind Apache to specific IP addresses and/or
... ...