Enable lingering for the contributors user
[mirror/dsa-puppet.git] / modules / roles / manifests / bugs_web.pp
1 class roles::bugs_web {
2   class { 'apache2':
3     rate_limit => true,
4   }
5
6   ssl::service { 'bugs.debian.org':
7     notify => Exec['service apache2 reload'],
8     key    => true,
9   }
10   ferm::rule { 'dsa-bugs-abusers':
11     prio => '005',
12     rule => 'saddr (220.243.135/24 220.243.136/24) DROP',
13   }
14 }