enable module reqtimeout everywhere
[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                 source => 'puppet:///modules/apache2/pratchett',
94         }
95
96         apache2::module { 'mpm_event': ensure => absent }
97         if has_role('apache_prefork') {
98                 apache2::module { 'mpm_worker': ensure => absent }
99                 apache2::module { 'mpm_prefork': }
100         } else {
101                 apache2::module { 'mpm_prefork': ensure => absent }
102                 apache2::module { 'mpm_worker': }
103         }
104         if $::lsbmajdistrelease > 7 {
105                 file { '/etc/apache2/mods-available/mpm_worker.conf':
106                         content => template('apache2/mpm_worker.erb'),
107                 }
108         }
109
110         file { '/etc/apache2/sites-available/common-ssl.inc':
111                 ensure => absent,
112         }
113
114         file { '/etc/logrotate.d/apache2':
115                 source => 'puppet:///modules/apache2/apache2.logrotate',
116         }
117
118         file { [ '/srv/www', '/srv/www/default.debian.org', '/srv/www/default.debian.org/htdocs', '/srv/www/default.debian.org/htdocs-disabled' ]:
119                 ensure  => directory,
120                 mode    => '0755',
121         }
122
123         file { '/srv/www/default.debian.org/htdocs/index.html':
124                 content => template('apache2/default-index.html'),
125         }
126
127         file { '/srv/www/default.debian.org/htdocs-disabled/index.html':
128                 content => template('apache2/disabled-index.html'),
129         }
130
131         file { '/var/log/apache2/.nobackup':
132                 mode    => '0644',
133                 content => '',
134         }
135
136         munin::check { 'apache_accesses': }
137         munin::check { 'apache_processes': }
138         munin::check { 'apache_volume': }
139         munin::check { 'apache_servers': }
140         munin::check { 'ps_apache2':
141                 script => 'ps_',
142         }
143         # The munin script needs this
144         package { 'libwww-perl':
145                 ensure => installed,
146         }
147
148         if $::hostname in [beach,buxtehude,picconi,pkgmirror-csail] {
149                 include apache2::dynamic
150         } else {
151                 @ferm::rule { 'dsa-http':
152                         prio        => '23',
153                         description => 'Allow web access',
154                         rule        => '&SERVICE(tcp, (http https))'
155                 }
156         }
157
158         @ferm::rule { 'dsa-http-v6':
159                 domain          => '(ip6)',
160                 prio            => '23',
161                 description     => 'Allow web access',
162                 rule            => '&SERVICE(tcp, (http https))'
163         }
164
165         exec { 'service apache2 reload':
166                 path        => '/usr/bin:/usr/sbin:/bin:/sbin',
167                 command     => 'service apache2 reload',
168                 refreshonly => true,
169                 require =>  Package['apache2'],
170         }
171
172         apache2::config { 'puppet-ssl-key-pins':
173                 content => template('apache2/ssl-key-pins.erb'),
174                 notify  => Exec['service apache2 reload'],
175         }
176 }