Add apache vhost
[mirror/dsa-puppet.git] / modules / roles / manifests / snapshot_web.pp
1 class roles::snapshot_web {
2         include apache2
3
4         ensure_packages ( [
5                 "libapache2-mod-wsgi",
6                 ], {
7                 ensure => 'installed',
8         })
9
10         apache2::site { '020-snapshot.debian.org':
11                 site   => 'snapshot.debian.org',
12                 content => template('roles/snapshot/snapshot.debian.org.conf.erb')
13         }
14 }