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