aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/mod/php.pp
blob: c5de893eee3675f0bce64f920f42c43abaf1c8a7 (plain)
1
2
3
4
5
6
7
8
9
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'),
    }
}