mpm_worker.conf 836 B

12345678910111213141516171819202122
  1. # worker MPM
  2. # StartServers: initial number of server processes to start
  3. # MinSpareThreads: minimum number of worker threads which are kept spare
  4. # MaxSpareThreads: maximum number of worker threads which are kept spare
  5. # ThreadLimit: ThreadsPerChild can be changed to this maximum value during a
  6. # graceful restart. ThreadLimit can only be changed by stopping
  7. # and starting Apache.
  8. # ThreadsPerChild: constant number of worker threads in each server process
  9. # MaxRequestWorkers: maximum number of threads
  10. # MaxConnectionsPerChild: maximum number of requests a server process serves
  11. <IfModule mpm_worker_module>
  12. StartServers 2
  13. MinSpareThreads 25
  14. MaxSpareThreads 75
  15. ThreadLimit 64
  16. ThreadsPerChild 25
  17. MaxRequestWorkers 150
  18. MaxConnectionsPerChild 0
  19. </IfModule>
  20. # vim: syntax=apache ts=4 sw=4 sts=4 sr noet