diff options
author | Nicolas Vigier <boklm@mageia.org> | 2013-07-25 22:09:21 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2013-07-25 22:09:21 +0000 |
commit | 0ba6e02c728c90ec2a1b4b10a03bfd77f5c8f7ca (patch) | |
tree | ecc2e146fa1524a16630b2623e3069229b74bce4 /modules | |
parent | 134d9cb89e7db96d521e04705579f5bba82b88d2 (diff) | |
download | puppet-0ba6e02c728c90ec2a1b4b10a03bfd77f5c8f7ca.tar puppet-0ba6e02c728c90ec2a1b4b10a03bfd77f5c8f7ca.tar.gz puppet-0ba6e02c728c90ec2a1b4b10a03bfd77f5c8f7ca.tar.bz2 puppet-0ba6e02c728c90ec2a1b4b10a03bfd77f5c8f7ca.tar.xz puppet-0ba6e02c728c90ec2a1b4b10a03bfd77f5c8f7ca.zip |
youri-check: add ssl vhost
Diffstat (limited to 'modules')
-rw-r--r-- | modules/youri-check/manifests/init.pp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/youri-check/manifests/init.pp b/modules/youri-check/manifests/init.pp index 37902ba2..eafbf622 100644 --- a/modules/youri-check/manifests/init.pp +++ b/modules/youri-check/manifests/init.pp @@ -69,7 +69,12 @@ class youri-check { define report_www { include youri-check::base $outdir = "/var/www/youri-check/" - apache::vhost_simple { $base::vhost: + apache::vhost::base { $base::vhost: + location => $outdir, + } + apache::vhost::base { "ssl_${base::vhost}": + vhost => $base::vhost, + use_ssl => true, location => $outdir, } } |