aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/base.pp
blob: 4e1d6ed4031847ebe8db7a8a7d32fad0a978a9d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
class apache::base {
    include apache::var

    $conf_d = '/etc/httpd/conf/conf.d'

    package { 'apache':
        alias => 'apache-server',
    }

    service { 'httpd':
        alias     => 'apache',
        subscribe => [ Package['apache-server'] ],
    }

    exec { 'apachectl configtest':
        refreshonly => true,
        notify      => Service['apache'],
    }

    apache::config {
        "${conf_d}/no_hidden_file_dir.conf":
            content => template('apache/no_hidden_file_dir.conf'),
            require => Package[$apache::var::pkg_conf];
        "${conf_d}/customization.conf":
            content => template('apache/customization.conf'),
            require => Package[$apache::var::pkg_conf];
        '/etc/httpd/conf/vhosts.d/00_default_vhosts.conf':
            content => template('apache/00_default_vhosts.conf'),
            require => Package[$apache::var::pkg_conf];
        '/etc/httpd/conf/modules.d/50_mod_deflate.conf':
            content => template('apache/50_mod_deflate.conf');
    }

    file { '/etc/logrotate.d/httpd':
        content => template('apache/logrotate')
    }
}