27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# File 'manifests/mod/proxy.pp', line 27
class apache::mod::proxy (
$proxy_requests = 'Off',
$allow_from = undef,
$apache_version = undef,
$package_name = undef,
$proxy_via = 'On',
$proxy_timeout = undef,
$proxy_iobuffersize = undef,
) {
include ::apache
$_proxy_timeout = $apache::timeout
$_apache_version = pick($apache_version, $apache::apache_version)
::apache::mod { 'proxy':
package => $package_name,
}
# Template uses $proxy_requests, $_apache_version
file { 'proxy.conf':
ensure => file,
path => "${::apache::mod_dir}/proxy.conf",
mode => $::apache::file_mode,
content => template('apache/mod/proxy.conf.erb'),
require => Exec["mkdir ${::apache::mod_dir}"],
before => File[$::apache::mod_dir],
notify => Class['apache::service'],
}
}
|