summaryrefslogtreecommitdiff
path: root/manifests/vhost/php/wordpress.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/php/wordpress.pp
parentf9ce4c767e38363ac522abec689488f654678609 (diff)
introduce php_default_charset to set charset header in php
Diffstat (limited to 'manifests/vhost/php/wordpress.pp')
-rw-r--r--manifests/vhost/php/wordpress.pp8
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/vhost/php/wordpress.pp b/manifests/vhost/php/wordpress.pp
index d12a989..0b94d4b 100644
--- a/manifests/vhost/php/wordpress.pp
+++ b/manifests/vhost/php/wordpress.pp
@@ -4,6 +4,12 @@
# and run_uid and run_gid are used as vhost users
# run_uid: the uid the vhost should run as with the itk module
# run_gid: the gid the vhost should run as with the itk module
+# 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::php::wordpress(
$ensure = present,
$domain = 'absent',
@@ -22,6 +28,7 @@ define apache::vhost::php::wordpress(
$php_upload_tmp_dir = 'absent',
$php_session_save_path = 'absent',
$php_safe_mode_exec_bins = 'absent',
+ $php_default_charset = 'absent',
$do_includes = false,
$options = 'absent',
$additional_options = 'absent',
@@ -66,6 +73,7 @@ define apache::vhost::php::wordpress(
php_upload_tmp_dir => $php_upload_tmp_dir,
php_session_save_path => $php_session_save_path,
php_safe_mode_exec_bins => $php_safe_mode_exec_bins,
+ php_default_charset => $php_default_charset,
do_includes => $do_includes,
options => $options,
additional_options => $additional_options,