mpm_prefork.conf 547 B

1234567891011121314151617
  1. <IfModule mpm_prefork_module>
  2. # On startup, start these many servers
  3. StartServers 2
  4. # At any given time, keep atleast these many servers
  5. MinSpareServers 2
  6. # At any given time, keep atmost these many idle servers (this is always >= MinSpareServers+1)
  7. MaxSpareServers 3
  8. # Maximum number of servers at any given instant. Requests will be queued after this
  9. MaxRequestWorkers 6
  10. # Recycle process after handling these many requests. This protected against accidental memory leaks
  11. MaxConnectionsPerChild 100
  12. </IfModule>