]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/apache2/manifests/init.pp
sibelius needs more RAM for git-http-backend
[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
23         package { 'libapache2-mod-macro':
24                 ensure => installed
25         }
26
27         apache2::module { 'macro':
28                 require => Package['libapache2-mod-macro']
29         }
30
31         apache2::site { '00-default':
32                 site     => 'default-debian.org',
33                 content  => template('apache2/default-debian.org.erb'),
34         }
35
36         apache2::site { '000-default':
37                 ensure => absent,
38         }
39
40         apache2::config { 'serve-cgi-bin':
41                 ensure => absent,
42         }
43
44         apache2::config { 'ressource-limits':
45                 ensure => absent,
46         }
47
48         if has_role('udd') {
49                 $memlimit = 512 * 1024 * 1024
50         } elsif has_role('sso') {
51                 $memlimit = 512 * 1024 * 1024
52         } elsif has_role('qamaster') {
53                 $memlimit = 300 * 1024 * 1024
54         } elsif has_role('snapshot_master') {
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-config':
85                 content => template('apache2/puppet-config.erb'),
86         }
87
88         apache2::config { 'pratchett':
89                 source => 'puppet:///modules/apache2/pratchett',
90         }
91
92         if $::lsbmajdistrelease > 7 {
93                 file { '/etc/apache2/mods-available/mpm_worker.conf':
94                         content => template('apache2/mpm_worker.erb'),
95                 }
96         }
97
98         file { '/etc/apache2/sites-available/common-ssl.inc':
99                 ensure => absent,
100         }
101
102         file { '/etc/logrotate.d/apache2':
103                 source => 'puppet:///modules/apache2/apache2.logrotate',
104         }
105
106         file { [ '/srv/www', '/srv/www/default.debian.org', '/srv/www/default.debian.org/htdocs' ]:
107                 ensure  => directory,
108                 mode    => '0755',
109         }
110
111         file { '/srv/www/default.debian.org/htdocs/index.html':
112                 content => template('apache2/default-index.html'),
113         }
114
115         file { '/var/log/apache2/.nobackup':
116                 mode    => '0644',
117                 content => '',
118         }
119
120         munin::check { 'apache_accesses': }
121         munin::check { 'apache_processes': }
122         munin::check { 'apache_volume': }
123         munin::check { 'apache_servers': }
124         munin::check { 'ps_apache2':
125                 script => 'ps_',
126         }
127
128         if $::hostname in [beach,buxtehude,picconi,pkgmirror-1and1] {
129                 include apache2::dynamic
130         } else {
131                 @ferm::rule { 'dsa-http':
132                         prio        => '23',
133                         description => 'Allow web access',
134                         rule        => '&SERVICE(tcp, (http https))'
135                 }
136         }
137
138         @ferm::rule { 'dsa-http-v6':
139                 domain          => '(ip6)',
140                 prio            => '23',
141                 description     => 'Allow web access',
142                 rule            => '&SERVICE(tcp, (http https))'
143         }
144 }