summaryrefslogtreecommitdiff
path: root/puppet/modules/site_static/manifests/domain.pp
blob: b26cc9e323650b09dc4d62a474acf94831945239 (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
33
# configure static service for domain
define site_static::domain (
  $ca_cert,
  $key,
  $cert,
  $tls_only=true,
  $locations=undef,
  $aliases=undef,
  $apache_config=undef) {

  $domain = $name
  $base_dir = '/srv/static'

  $cafile = "${cert}\n${ca_cert}"

  if is_hash($locations) {
    create_resources(site_static::location, $locations)
  }

  x509::cert { $domain:
    content => $cafile,
    notify  => Service[apache]
  }
  x509::key { $domain:
    content => $key,
    notify  => Service[apache]
  }

  apache::vhost::file { $domain:
    content => template('site_static/apache.conf.erb')
  }

}