]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/apache2/manifests/init.pp
Merge branch 'master' of ssh://puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet
[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
140     case $hostname {
141         sibelius,stabile: {
142             @ferm::rule { "dsa-http":
143                 prio            => "23",
144                 description     => "Allow web access",
145                 rule            => "&SERVICE(tcp, (http https))"
146             }
147         }
148         default: {
149             @ferm::rule { "dsa-http-limit":
150                 prio            => "20",
151                 description     => "limit HTTP DOS",
152                 chain           => 'http_limit',
153                 rule            => '
154                                     mod limit limit-burst 60 limit 15/minute jump ACCEPT;
155                                     jump DROP;
156                                    '
157             }
158             @ferm::rule { "dsa-http-soso":
159                 prio            => "21",
160                 description     => "slow soso spider",
161                 chain           => 'limit_sosospider',
162                 rule            => '
163                                     mod connlimit connlimit-above 2 connlimit-mask 21 jump DROP;
164                                     jump http_limit;
165                                    '
166             }
167             @ferm::rule { "dsa-http-yahoo":
168                 prio            => "21",
169                 description     => "slow yahoo spider",
170                 chain           => 'limit_yahoo',
171                 rule            => '
172                                     mod connlimit connlimit-above 2 connlimit-mask 16 jump DROP;
173                                     jump http_limit;
174                                    '
175             }
176             @ferm::rule { "dsa-http-google":
177                 prio            => "21",
178                 description     => "slow google spider",
179                 chain           => 'limit_google',
180                 rule            => '
181                                     mod connlimit connlimit-above 2 connlimit-mask 19 jump DROP;
182                                     jump http_limit;
183                                    '
184             }
185             @ferm::rule { "dsa-http-bing":
186                 prio            => "21",
187                 description     => "slow bing spider",
188                 chain           => 'limit_bing',
189                 rule            => '
190                                     mod connlimit connlimit-above 2 connlimit-mask 16 jump DROP;
191                                     jump http_limit;
192                                    '
193             }
194             @ferm::rule { "dsa-http-rules":
195                 prio            => "22",
196                 description     => "http subchain",
197                 chain           => 'http',
198                 rule            => '
199                                     saddr ( 74.6.22.182 74.6.18.240 67.195.0.0/16 ) jump limit_yahoo;
200                                     saddr 124.115.0.0/21 jump limit_sosospider;
201                                     saddr (65.52.0.0/14 207.46.0.0/16) jump limit_bing;
202                                     saddr (66.249.64.0/19) jump limit_google;
203
204                                     mod recent name HTTPDOS update seconds 1800 jump log_or_drop;
205                                     mod hashlimit hashlimit-name HTTPDOS hashlimit-mode srcip hashlimit-burst 600 hashlimit 30/minute jump ACCEPT;
206                                     mod recent name HTTPDOS set jump log_or_drop;
207                                    '
208             }
209             @ferm::rule { "dsa-http":
210                 prio            => "23",
211                 description     => "Allow web access",
212                 rule            => "proto tcp dport (http https) jump http;"
213             }
214         }
215     }
216     @ferm::rule { "dsa-http-v6":
217         domain          => "(ip6)",
218         prio            => "23",
219         description     => "Allow web access",
220         rule            => "&SERVICE(tcp, (http https))"
221     }
222 }
223 # vim:set et:
224 # vim:set sts=4 ts=4:
225 # vim:set shiftwidth=4: