diff options
-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, } } |