1
0
mirror of https://git.cloudron.io/cloudron/freshrss-app synced 2025-01-05 03:52:04 +00:00
freshrss-app/apache/mpm_prefork.conf
Girish Ramakrishnan 5d5eb1f633 Version 1.13.0
2021-03-18 14:35:51 -07:00

18 lines
548 B
Plaintext

<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 10
# Recycle process after handling these many requests. This protected against accidental memory leaks
MaxConnectionsPerChild 100
</IfModule>