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