diff options
Diffstat (limited to 'modules/apache/manifests/mod/php.pp')
-rw-r--r-- | modules/apache/manifests/mod/php.pp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/apache/manifests/mod/php.pp b/modules/apache/manifests/mod/php.pp new file mode 100644 index 00000000..28ac6e31 --- /dev/null +++ b/modules/apache/manifests/mod/php.pp @@ -0,0 +1,10 @@ +class apache::mod::php { + include apache::base + $php_date_timezone = 'UTC' + + package { 'apache-mod_php': } + + apache::config { '/etc/httpd/conf.d/mod_php.conf': + content => template('apache/mod_php.conf'), + } +} |