Puppet Class: crm::apache

Defined in:
puppet/modules/crm/manifests/apache.pp

Overview

Class: crm::apache

Apache site configuration for the Fundraising CRM



5
6
7
8
9
10
11
12
13
14
15
# File 'puppet/modules/crm/manifests/apache.pp', line 5

class crm::apache {
    include ::crm
    include ::apache
    include ::apache::mod::rewrite

    apache::site { $crm::site_name:
        ensure  => present,
        content => template('crm/crm-apache-site.erb'),
        require => Class['::apache::mod::rewrite'],
    }
}