]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/apache2/manifests/init.pp
Revert "MIT seems to be hammering morricone, making /var fill up."
[dsa-puppet.git] / modules / apache2 / manifests / init.pp
1 class apache2 {
2     activate_munin_check {
3         "apache_accesses":;
4         "apache_processes":;
5         "apache_volume":;
6         "apache_servers":;
7         "ps_apache2": script => "ps_";
8     }
9
10     package {
11         "apache2": ensure => installed;
12     }
13
14     case $php5 {
15         "true": {
16             package {
17                 "php5-suhosin": ensure => installed;
18             }
19
20             file { "/etc/php5/conf.d/suhosin.ini":
21                 source  => [ "puppet:///modules/apache2/per-host/$fqdn/etc/php5/conf.d/suhosin.ini",
22                              "puppet:///modules/apache2/common/etc/php5/conf.d/suhosin.ini" ],
23                 require => Package["apache2", "php5-suhosin"],
24                 notify  => Exec["force-reload-apache2"];
25             }
26         }
27     }
28
29     define activate_apache_site($ensure=present, $site=$name) {
30         case $site {
31             "": { $base = $name }
32             default: { $base = $site }
33         }
34
35         case $ensure {
36             present: {
37                     file { "/etc/apache2/sites-enabled/$name":
38                              ensure => "/etc/apache2/sites-available/$base",
39                              require => Package["apache2"],
40                              notify => Exec["reload-apache2"];
41                     }
42             }
43             absent: {
44                     file { "/etc/apache2/sites-enabled/$name":
45                              ensure => $ensure,
46                              notify => Exec["reload-apache2"];
47                     }
48             }
49             default: { err ( "Unknown ensure value: '$ensure'" ) }
50         }
51     }
52
53     define enable_module($ensure=present) {
54         case $ensure {
55             present: {
56                 exec { 
57                       "/usr/sbin/a2enmod $name":
58                         unless => "/bin/sh -c '[ -L /etc/apache2/mods-enabled/${name}.load ]'",
59                         notify => Exec["force-reload-apache2"],
60                 }
61             }
62             absent: {
63                 exec {
64                       "/usr/sbin/a2dismod $name":
65                         onlyif => "/bin/sh -c '[ -L /etc/apache2/mods-enabled/${name}.load ]'",
66                         notify => Exec["force-reload-apache2"],
67                 }
68             }
69             default: { err ( "Unknown ensure value: '$ensure'" ) }
70         }
71     }
72
73     enable_module {
74         "info":;
75         "status":;
76     }
77
78     activate_apache_site {
79         "00-default": site => "default-debian.org";
80         "000-default": ensure => absent;
81     }
82
83     file {
84         "/etc/apache2/conf.d/ressource-limits":
85             content => template("apache2/ressource-limits.erb"),
86             require => Package["apache2"],
87                         notify  => Exec["reload-apache2"];
88         "/etc/apache2/conf.d/security":
89             source  => [ "puppet:///modules/apache2/per-host/$fqdn/etc/apache2/conf.d/security",
90                          "puppet:///modules/apache2/common/etc/apache2/conf.d/security" ],
91             require => Package["apache2"],
92             notify  => Exec["reload-apache2"];
93         "/etc/apache2/conf.d/local-serverinfo":
94             source  => [ "puppet:///modules/apache2/per-host/$fqdn/etc/apache2/conf.d/local-serverinfo",
95                          "puppet:///modules/apache2/common/etc/apache2/conf.d/local-serverinfo" ],
96             require => Package["apache2"],
97             notify  => Exec["reload-apache2"];
98         "/etc/apache2/conf.d/server-status":
99             source  => [ "puppet:///modules/apache2/per-host/$fqdn/etc/apache2/conf.d/server-status",
100                          "puppet:///modules/apache2/common/etc/apache2/conf.d/server-status" ],
101             require => Package["apache2"],
102             notify  => Exec["reload-apache2"];
103
104         "/etc/apache2/sites-available/default-debian.org":
105             content => template("apache2/default-debian.org.erb"),
106             require => Package["apache2"],
107             notify  => Exec["reload-apache2"];
108
109         "/etc/logrotate.d/apache2":
110             source  => [ "puppet:///modules/apache2/per-host/$fqdn/etc/logrotate.d/apache2",
111                          "puppet:///modules/apache2/common/etc/logrotate.d/apache2" ];
112
113         "/srv/www":
114             mode    => 755,
115             ensure  => directory;
116         "/srv/www/default.debian.org":
117             mode    => 755,
118             ensure  => directory;
119         "/srv/www/default.debian.org/htdocs":
120             mode    => 755,
121             ensure  => directory;
122         "/srv/www/default.debian.org/htdocs/index.html":
123             content => template("apache2/default-index.html");
124
125         # sometimes this is a symlink
126         #"/var/log/apache2":
127         #    mode    => 755,
128         #    ensure  => directory;
129     }
130
131     exec {
132         "reload-apache2":
133             command => "/etc/init.d/apache2 reload",
134             refreshonly => true;
135         "force-reload-apache2":
136             command => "/etc/init.d/apache2 force-reload",
137             refreshonly => true;
138     }
139     case $hostname {
140         chopin,franck,morricone: {
141             package {
142                 "libapache2-mod-macro": ensure => installed;
143             }
144             enable_module {
145                 "macro":;
146             }
147             file {
148                 "/etc/apache2/conf.d/puppet-builddlist":
149                     content => template("apache2/conf-builddlist.erb"),
150                     require => Package["apache2"],
151                     notify  => Exec["reload-apache2"];
152             }
153         }
154     }
155
156     case $hostname {
157         busoni,duarte,holter,lindberg,master,merkel,powell,rore: {
158             @ferm::rule { "dsa-http-limit":
159                 prio            => "20",
160                 description     => "limit HTTP DOS",
161                 chain           => 'http_limit',
162                 rule            => '
163                                     mod limit limit-burst 60 limit 15/minute jump ACCEPT;
164                                     jump DROP'
165             }
166             @ferm::rule { "dsa-http-soso":
167                 prio            => "21",
168                 description     => "slow soso spider",
169                 chain           => 'limit_sosospider',
170                 rule            => '
171                                     mod connlimit connlimit-above 2 connlimit-mask 21 jump DROP;
172                                     jump http_limit'
173             }
174             @ferm::rule { "dsa-http-yahoo":
175                 prio            => "21",
176                 description     => "slow yahoo spider",
177                 chain           => 'limit_yahoo',
178                 rule            => '
179                                     mod connlimit connlimit-above 2 connlimit-mask 16 jump DROP;
180                                     jump http_limit'
181             }
182             @ferm::rule { "dsa-http-google":
183                 prio            => "21",
184                 description     => "slow google spider",
185                 chain           => 'limit_google',
186                 rule            => '
187                                     mod connlimit connlimit-above 2 connlimit-mask 19 jump DROP;
188                                     jump http_limit'
189             }
190             @ferm::rule { "dsa-http-bing":
191                 prio            => "21",
192                 description     => "slow bing spider",
193                 chain           => 'limit_bing',
194                 rule            => '
195                                     mod connlimit connlimit-above 2 connlimit-mask 16 jump DROP;
196                                     jump http_limit'
197             }
198             @ferm::rule { "dsa-http-rules":
199                 prio            => "22",
200                 description     => "http subchain",
201                 chain           => 'http',
202                 rule            => '
203                                     saddr ( 74.6.22.182 74.6.18.240 67.195.0.0/16 ) jump limit_yahoo;
204                                     saddr 124.115.0.0/21 jump limit_sosospider;
205                                     saddr (65.52.0.0/14 207.46.0.0/16) jump limit_bing;
206                                     saddr (66.249.64.0/19) jump limit_google;
207
208                                     mod recent name HTTPDOS update seconds 1800 jump log_or_drop;
209                                     mod hashlimit hashlimit-name HTTPDOS hashlimit-mode srcip hashlimit-burst 600 hashlimit 30/minute jump ACCEPT;
210                                     mod recent name HTTPDOS set jump log_or_drop'
211             }
212             @ferm::rule { "dsa-http":
213                 prio            => "23",
214                 description     => "Allow web access",
215                 rule            => "proto tcp dport (http https) jump http"
216             }
217         }
218         default: {
219             @ferm::rule { "dsa-http":
220                 prio            => "23",
221                 description     => "Allow web access",
222                 rule            => "&SERVICE(tcp, (http https))"
223             }
224         }
225     }
226     @ferm::rule { "dsa-http-v6":
227         domain          => "(ip6)",
228         prio            => "23",
229         description     => "Allow web access",
230         rule            => "&SERVICE(tcp, (http https))"
231     }
232 }
233 # vim:set et:
234 # vim:set sts=4 ts=4:
235 # vim:set shiftwidth=4: