diff options
-rw-r--r-- | modules/apache/manifests/init.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp index 191ac0c3..ead7d8f1 100644 --- a/modules/apache/manifests/init.pp +++ b/modules/apache/manifests/init.pp @@ -188,10 +188,11 @@ class apache { } } - define vhost_catalyst_app($script, $location = '', $process = 4, $use_ssl = false) { + define vhost_catalyst_app($script, $location = '', $process = 4, $use_ssl = false, $vhost = false) { include apache::mod_fastcgi vhost_base { $name: + vhost => $vhost, use_ssl => $use_ssl, content => template("apache/vhost_catalyst_app.conf") } |