blob: b9177f25f79014e0a99d0495f3b6e7530b703baa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
define site_static::domain (
$ca_cert,
$key,
$cert,
$tls_only=true,
$locations=undef,
$aliases=undef,
$apache_config=undef) {
$domain = $name
$base_dir = '/srv/static'
create_resources(site_static::location, $locations)
x509::cert { $domain:
content => $cert,
notify => Service[apache]
}
x509::key { $domain:
content => $key,
notify => Service[apache]
}
x509::ca { "${domain}_ca":
content => $ca_cert,
notify => Service[apache]
}
apache::vhost::file { $domain:
content => template('site_static/apache.conf.erb')
}
}
|