Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 8th, 2012  |  syntax: None  |  size: 0.82 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <IfModule mpm_prefork_module>
  2.     StartServers          2
  3.     MinSpareServers       1
  4.     MaxSpareServers      2
  5.     MaxClients          30
  6.     MaxRequestsPerChild   10
  7. </IfModule>
  8.  
  9. # worker MPM
  10. # StartServers: initial number of server processes to start
  11. # MaxClients: maximum number of simultaneous client connections
  12. # MinSpareThreads: minimum number of worker threads which are kept spare
  13. # MaxSpareThreads: maximum number of worker threads which are kept spare
  14. # ThreadsPerChild: constant number of worker threads in each server process
  15. # MaxRequestsPerChild: maximum number of requests a server process serves
  16. <IfModule mpm_worker_module>
  17.     StartServers          2
  18.     MaxClients          30
  19.     MinSpareThreads      2
  20.     MaxSpareThreads      5
  21.     ThreadsPerChild      5
  22.     MaxRequestsPerChild   7
  23. </IfModule>