]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/apache2/files/mpm_worker
apache2: configure mpm_worker module on jessie hosts
[dsa-puppet.git] / modules / apache2 / files / mpm_worker
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ##
4
5 # worker MPM
6 # StartServers: initial number of server processes to start
7 # MinSpareThreads: minimum number of worker threads which are kept spare
8 # MaxSpareThreads: maximum number of worker threads which are kept spare
9 # ThreadLimit: ThreadsPerChild can be changed to this maximum value during a
10 #                         graceful restart. ThreadLimit can only be changed by stopping
11 #                         and starting Apache.
12 # ThreadsPerChild: constant number of worker threads in each server process
13 # MaxRequestWorkers: maximum number of threads
14 # MaxConnectionsPerChild: maximum number of requests a server process serves
15
16 <IfModule mpm_worker_module>
17         #StartServers                    2
18         #MinSpareThreads                 25
19         #MaxSpareThreads                 75
20         #ThreadLimit                     64
21         #ThreadsPerChild                 25
22         #MaxRequestWorkers        150
23         #MaxConnectionsPerChild   0
24         ServerLimit                30
25         MaxRequestWorkers        1500
26         ThreadsPerChild            50
27         MinSpareThreads            20
28         MaxSpareThreads            75
29         MaxConnectionsPerChild  10000
30 </IfModule>
31
32 # vim: syntax=apache ts=4 sw=4 sts=4 sr noet