From d0d5abbd6d149e696664a19c039a5df378364010 Mon Sep 17 00:00:00 2001 From: Lai Power Date: Sat, 31 Oct 2020 15:29:58 +0000 Subject: [PATCH] modified file `apache` --- apache/mpm_prefork.conf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 apache/mpm_prefork.conf 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 + +