modified file apache
This commit is contained in:
parent
2b7df84d30
commit
d0d5abbd6d
17
apache/mpm_prefork.conf
Normal file
17
apache/mpm_prefork.conf
Normal file
@ -0,0 +1,17 @@
|
||||
<IfModule mpm_prefork_module>
|
||||
# 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
|
||||
</IfModule>
|
||||
|
Loading…
Reference in New Issue
Block a user