diff --git a/apache/mpm_prefork.conf b/apache/mpm_prefork.conf new file mode 100644 index 0000000..091b2c1 --- /dev/null +++ b/apache/mpm_prefork.conf @@ -0,0 +1,17 @@ + + # On startup, start these many servers + StartServers 2 + + # At any given time, keep atleast these many servers + MinSpareServers 2 + + # At any given time, keep atmost these many idle servers (this is always >= MinSpareServers+1) + MaxSpareServers 3 + + # Maximum number of servers at any given instant. Requests will be queued after this + MaxRequestWorkers 5 + + # Recycle process after handling these many requests. This protected against accidental memory leaks + MaxConnectionsPerChild 100 + +