summaryrefslogtreecommitdiff
path: root/manifests/vhost/template.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-11-21 13:47:23 +0100
committermh <mh@immerda.ch>2009-11-21 13:47:23 +0100
commita81d565d4d2edbcad098f5c77d5cf70ce70cb333 (patch)
tree01e82eb6d0c6bdb05637eeb9e2d01255b3869aa8 /manifests/vhost/template.pp
parentf9ce4c767e38363ac522abec689488f654678609 (diff)
introduce php_default_charset to set charset header in php
Diffstat (limited to 'manifests/vhost/template.pp')
-rw-r--r--manifests/vhost/template.pp8
1 files changed, 7 insertions, 1 deletions
diff --git a/manifests/vhost/template.pp b/manifests/vhost/template.pp
index ba2e4d1..bda1f04 100644
--- a/manifests/vhost/template.pp
+++ b/manifests/vhost/template.pp
@@ -14,7 +14,12 @@
# - true: enable ssl for this vhost
# - force: enable ssl and redirect non-ssl to ssl
# - only: enable ssl only
-#
+# php_safe_mode_exec_bins: An array of local binaries which should be linked in the
+# safe_mode_exec_bin for this hosting
+# *default*: None
+# php_default_charset: default charset header for php.
+# *default*: absent, which will set the same as default_charset
+# of apache
define apache::vhost::template(
$ensure = present,
$path = 'absent',
@@ -35,6 +40,7 @@ define apache::vhost::template(
$php_use_smarty = false,
$php_use_pear = false,
$php_safe_mode = true,
+ $php_default_charset = 'absent',
$run_mode = 'normal',
$run_uid = 'absent',
$run_gid = 'absent',