Require HTTP auth to access roundcube
[sysconfig/apache2.git] / mods-available / mpm_worker.conf
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
12 <IfModule mpm_worker_module>
13         StartServers                     2
14         MinSpareThreads          25
15         MaxSpareThreads          75
16         ThreadLimit                      64
17         ThreadsPerChild          25
18         MaxRequestWorkers         150
19         MaxConnectionsPerChild   0
20 </IfModule>
21
22 # vim: syntax=apache ts=4 sw=4 sts=4 sr noet