summaryrefslogtreecommitdiff
path: root/manifests/vhost
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2010-11-04 12:01:18 +0100
committermh <mh@immerda.ch>2010-11-04 12:01:18 +0100
commitc8c3719c722c23dc5c4187eaf487947340a95478 (patch)
tree7bf7877a0d91a13483bec8d7bcd01b89d1b0ea85 /manifests/vhost
parentead90d3f85bfd3b6d2737643b2ca1fcd7441f4b7 (diff)
allow setting of additional options for proxy vhosts
Diffstat (limited to 'manifests/vhost')
-rw-r--r--manifests/vhost/proxy.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/vhost/proxy.pp b/manifests/vhost/proxy.pp
index 56b2e1d..6cfdd16 100644
--- a/manifests/vhost/proxy.pp
+++ b/manifests/vhost/proxy.pp
@@ -28,7 +28,8 @@ define apache::vhost::proxy(
$server_admin = 'absent',
$logmode = 'default',
$mod_security = false,
- $ssl_mode = false
+ $ssl_mode = false,
+ $additional_options = 'absent'
){
# create vhost configuration file
# we use the options field as the target_url
@@ -50,6 +51,7 @@ define apache::vhost::proxy(
mod_security => $mod_security,
options => $target_url,
ssl_mode => $ssl_mode,
+ additional_options => $additional_options,
}
}