Use mpm_worker over mpm_event
[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 class apache2 {
10         package { 'apache2':
11                 ensure => installed,
12         }
13
14         service { 'apache2':
15                 ensure  => running,
16                 require => Package['apache2'],
17         }
18
19         apache2::module { 'info': }
20         apache2::module { 'status': }
21         apache2::module { 'headers': }
22         apache2::module { 'macro': }
23
24         apache2::site { '00-default':
25                 site     => 'default-debian.org',
26                 content  => template('apache2/default-debian.org.erb'),
27         }
28         apache2::site { 'xx-default-ssl':
29                 site     => 'default-debian.org-ssl',
30                 content  => template('apache2/default-debian.org-ssl.erb'),
31         }
32
33         apache2::site { '000-default':
34                 ensure => absent,
35         }
36
37         apache2::config { 'serve-cgi-bin':
38                 ensure => absent,
39         }
40
41         apache2::config { 'ressource-limits':
42                 ensure => absent,
43         }
44
45         if has_role('udd') {
46                 $memlimit = 512 * 1024 * 1024
47         } elsif has_role('dgit_git') {
48                 $memlimit = 512 * 1024 * 1024
49         } elsif has_role('sso') {
50                 $memlimit = 512 * 1024 * 1024
51         } elsif has_role('popcon') {
52                 $memlimit = 512 * 1024 * 1024
53         } elsif has_role('qamaster') {
54                 $memlimit = 300 * 1024 * 1024
55         } else {
56                 $memlimit = 192 * 1024 * 1024
57         }
58
59         apache2::config { 'resource-limits':
60                 content => template('apache2/resource-limits.erb'),
61         }
62
63         apache2::config { 'security':
64                 source => 'puppet:///modules/apache2/security',
65         }
66
67         apache2::config { 'logformat-privacy':
68                 source => 'puppet:///modules/apache2/logformat-privacy',
69         }
70
71         apache2::config { 'local-serverinfo':
72                 source => 'puppet:///modules/apache2/local-serverinfo',
73         }
74
75         apache2::config { 'server-status':
76                 source => 'puppet:///modules/apache2/server-status',
77         }
78
79         apache2::config { 'puppet-ssl-macros':
80                 source => 'puppet:///modules/apache2/puppet-ssl-macros',
81         }
82
83         apache2::config { 'puppet-ftp-macros':
84                 source => 'puppet:///modules/apache2/puppet-ftp-macros',
85         }
86
87         apache2::config { 'puppet-config':
88                 content => template('apache2/puppet-config.erb'),
89         }
90
91         apache2::config { 'pratchett':
92                 source => 'puppet:///modules/apache2/pratchett',
93         }
94
95         apache2::module { 'mpm_event': ensure => absent }
96         apache2::module { 'mpm_worker': }
97         if $::lsbmajdistrelease > 7 {
98                 file { '/etc/apache2/mods-available/mpm_worker.conf':
99                         content => template('apache2/mpm_worker.erb'),
100                 }
101         }
102
103         file { '/etc/apache2/sites-available/common-ssl.inc':
104                 ensure => absent,
105         }
106
107         file { '/etc/logrotate.d/apache2':
108                 source => 'puppet:///modules/apache2/apache2.logrotate',
109         }
110
111         file { [ '/srv/www', '/srv/www/default.debian.org', '/srv/www/default.debian.org/htdocs', '/srv/www/default.debian.org/htdocs-disabled' ]:
112                 ensure  => directory,
113                 mode    => '0755',
114         }
115
116         file { '/srv/www/default.debian.org/htdocs/index.html':
117                 content => template('apache2/default-index.html'),
118         }
119
120         file { '/srv/www/default.debian.org/htdocs-disabled/index.html':
121                 content => template('apache2/disabled-index.html'),
122         }
123
124         file { '/var/log/apache2/.nobackup':
125                 mode    => '0644',
126                 content => '',
127         }
128
129         munin::check { 'apache_accesses': }
130         munin::check { 'apache_processes': }
131         munin::check { 'apache_volume': }
132         munin::check { 'apache_servers': }
133         munin::check { 'ps_apache2':
134                 script => 'ps_',
135         }
136         # The munin script needs this
137         package { 'libwww-perl':
138                 ensure => installed,
139         }
140
141         if $::hostname in [beach,buxtehude,picconi,pkgmirror-csail] {
142                 include apache2::dynamic
143         } else {
144                 @ferm::rule { 'dsa-http':
145                         prio        => '23',
146                         description => 'Allow web access',
147                         rule        => '&SERVICE(tcp, (http https))'
148                 }
149         }
150
151         @ferm::rule { 'dsa-http-v6':
152                 domain          => '(ip6)',
153                 prio            => '23',
154                 description     => 'Allow web access',
155                 rule            => '&SERVICE(tcp, (http https))'
156         }
157
158         exec { 'service apache2 reload':
159                 path        => '/usr/bin:/usr/sbin:/bin:/sbin',
160                 command     => 'service apache2 reload',
161                 refreshonly => true,
162                 require =>  Package['apache2'],
163         }
164
165         apache2::config { 'puppet-ssl-key-pins':
166                 content => template('apache2/ssl-key-pins.erb'),
167                 notify  => Exec['service apache2 reload'],
168         }
169 }