Do not install the redirect vhosts on www-staging.d.o
[mirror/dsa-puppet.git] / modules / roles / manifests / www_master.pp
1 class roles::www_master {
2         ssl::service { 'www-master.debian.org':
3                 notify  => Exec['service apache2 reload'],
4                 key => true,
5         }
6
7         $vhost_listen = '*:80'
8         $vhost_listen_443 = '*:443'
9         $redirect_vhosts = false
10         $wwwdo_server_name = 'www-staging.debian.org'
11         $wwwdo_document_root = '/srv/www.debian.org/www'
12         apache2::site { '005-www-staging.debian.org':
13                 site    => 'www-staging.debian.org',
14                 content => template('roles/apache-www.debian.org.erb'),
15         }
16
17         ssl::service { 'www-staging.debian.org' :
18                 notify => Exec['service apache2 reload'],
19                 key    => true,
20         }
21 }