aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/mod/php.pp
blob: 28ac6e316e8c7cad4e935d1442db116b948f5cec (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'),
    }
}