deploy a basic apache config for salsa
[mirror/dsa-puppet.git] / modules / salsa / manifests / web.pp
1 #
2 class salsa::web inherits salsa {
3         include apache2
4         include apache2::proxy_http
5         include apache2::ssl
6
7         ssl::service { 'salsa.debian.org':
8                 notify  => Exec['service apache2 reload'],
9                 key => true,
10         }
11
12         apache2::site { '010-salsa.debian.org':
13                 site    => 'salsa.debian.org',
14                 content => template('salsa/apache-salsa.debian.org.conf.erb'),
15         }
16
17 }