freshrss-app/apache/mpm_prefork.conf

18 lines
548 B
Plaintext
Raw Normal View History

2018-05-21 17:07:27 +00:00
<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
2021-03-18 21:35:51 +00:00
MaxRequestWorkers 10
2018-05-21 17:07:27 +00:00
# Recycle process after handling these many requests. This protected against accidental memory leaks
MaxConnectionsPerChild 100
</IfModule>