partially get rlimitmem from class param
[mirror/dsa-puppet.git] / modules / apache2 / manifests / init.pp
1 # = Class: apache2
2 #
3 # Standard apache config debian.org hosts
4 #
5 # == Sample Usage:
6 #
7 #   include apache2
8 #
9 # @param smaller_number_of_threads by default the worker config is geared towards
10 #                                  serving static/cheap content.  If the host is very
11 #                                  script heavy (say the bug tracking system), set this
12 #                                  to reduce the number of worker threads.
13 # @param rlimitnproc A resource limit for number of processes.  The default is usually fine.
14 # @param rlimitmem   A resource limit for memory usage.  The default is usually fine.
15 # @param public Whether this host's apache should be accessible from the public internet.
16 #               Sets appropriate firewall rules and optionally rate limits.
17 class apache2(
18   Boolean $smaller_number_of_threads = false,
19   Integer $rlimitnproc = 256,
20   Integer $rlimitmem = 192 * 1024 * 1024,
21   Boolean $public = true,
22 ) {
23   include webserver
24
25   package { 'apache2':
26     ensure => installed,
27   }
28
29   service { 'apache2':
30     ensure  => running,
31     require => Package['apache2'],
32   }
33
34   apache2::module { 'reqtimeout': }
35   apache2::module { 'info': }
36   apache2::module { 'status': }
37   apache2::module { 'headers': }
38   apache2::module { 'macro': }
39
40   apache2::site { '00-default':
41     site    => 'default-debian.org',
42     content => template('apache2/default-debian.org.erb'),
43   }
44   apache2::site { 'xx-default-ssl':
45     site    => 'default-debian.org-ssl',
46     content => template('apache2/default-debian.org-ssl.erb'),
47   }
48
49   apache2::site { '000-default':
50     ensure => absent,
51   }
52
53   apache2::config { 'serve-cgi-bin':
54     ensure => absent,
55   }
56
57   if has_role('udd') {
58     $memlimit = 512 * 1024 * 1024
59   } elsif has_role('sso') {
60     $memlimit = 512 * 1024 * 1024
61   } elsif has_role('popcon') {
62     $memlimit = 512 * 1024 * 1024
63   } elsif has_role('qamaster') {
64     $memlimit = 300 * 1024 * 1024
65   } else {
66     $memlimit = $rlimitmem
67   }
68
69   apache2::config { 'resource-limits':
70     content => template('apache2/resource-limits.erb'),
71   }
72
73   apache2::config { 'security':
74     source => 'puppet:///modules/apache2/security',
75   }
76
77   apache2::config { 'logformat-privacy':
78     source => 'puppet:///modules/apache2/logformat-privacy',
79   }
80
81   apache2::config { 'local-serverinfo':
82     source => 'puppet:///modules/apache2/local-serverinfo',
83   }
84
85   apache2::config { 'server-status':
86     source => 'puppet:///modules/apache2/server-status',
87   }
88
89   apache2::config { 'puppet-ssl-macros':
90     source => 'puppet:///modules/apache2/puppet-ssl-macros',
91   }
92
93   apache2::config { 'puppet-ftp-macros':
94     source => 'puppet:///modules/apache2/puppet-ftp-macros',
95   }
96
97   apache2::config { 'puppet-config':
98     content => template('apache2/puppet-config.erb'),
99   }
100
101   apache2::config { 'headers':
102     source => 'puppet:///modules/apache2/headers',
103   }
104
105   apache2::config { 'disabled-service':
106     source => 'puppet:///modules/apache2/disabled-service',
107   }
108
109   apache2::module { 'mpm_event': ensure => absent }
110   if has_role('apache_prefork') {
111     apache2::module { 'mpm_worker': ensure => absent }
112     apache2::module { 'mpm_prefork': }
113   } else {
114     apache2::module { 'mpm_prefork': ensure => absent }
115     apache2::module { 'mpm_worker': }
116   }
117   file { '/etc/apache2/mods-available/mpm_worker.conf':
118     content => template('apache2/mpm_worker.erb'),
119   }
120
121   file { '/etc/logrotate.d/apache2':
122     source => 'puppet:///modules/apache2/apache2.logrotate',
123   }
124
125   file { '/var/log/apache2':
126     ensure => directory,
127     mode   => '0755',
128   }
129   file { '/var/log/apache2/.nobackup':
130     mode    => '0644',
131     content => '',
132   }
133
134   munin::check { 'apache_accesses': }
135   munin::check { 'apache_processes': }
136   munin::check { 'apache_volume': }
137   munin::check { 'apache_servers': }
138   munin::check { 'ps_apache2':
139     script => 'ps_',
140   }
141   # The munin script needs this
142   package { 'libwww-perl':
143     ensure => installed,
144   }
145
146   if $public {
147     if has_role('apache_ratelimited') {
148       include apache2::dynamic
149     } else {
150       ferm::rule { 'dsa-http':
151         domain      => '(ip ip6)',
152         prio        => '23',
153         description => 'Allow web access',
154         rule        => '&SERVICE(tcp, (http https))'
155       }
156     }
157   }
158
159   exec { 'service apache2 reload':
160     path        => '/usr/bin:/usr/sbin:/bin:/sbin',
161     command     => 'service apache2 reload',
162     refreshonly => true,
163     require     =>  Package['apache2'],
164   }
165
166   apache2::config { 'puppet-ssl-key-pins':
167     content => template('apache2/ssl-key-pins.erb'),
168     notify  => Exec['service apache2 reload'],
169   }
170
171   apache2::config { 'local-scheduled-shutdown':
172     source => 'puppet:///modules/apache2/local-scheduled-shutdown',
173   }
174 }