summaryrefslogtreecommitdiff
path: root/manifests/vhost.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/vhost.pp')
-rw-r--r--manifests/vhost.pp6
1 files changed, 5 insertions, 1 deletions
diff --git a/manifests/vhost.pp b/manifests/vhost.pp
index 64c20c7..90af00d 100644
--- a/manifests/vhost.pp
+++ b/manifests/vhost.pp
@@ -62,7 +62,9 @@ define apache::vhost(
$mod_security_additional_options = 'absent',
$use_mod_macro = false,
$ldap_auth = false,
- $ldap_user = 'any'
+ $ldap_user = 'any',
+ $passing_extension = 'absent',
+ $gempath = 'absent'
) {
# file or template mode?
case $vhost_mode {
@@ -111,6 +113,8 @@ define apache::vhost(
mod_security_rules_to_disable => $mod_security_rules_to_disable,
mod_security_additional_options => $mod_security_additional_options,
use_mod_macro => $use_mod_macro,
+ passing_extension => $passing_extension,
+ gempath => $gempath,
}
}
default: { fail("no such vhost_mode: $vhost_mode defined for $name.") }