Puppet Class: apache::mod::proxy

Defined in:
manifests/mod/proxy.pp

Summary

Installs and configures `mod_proxy`.

Overview

Parameters:

  • proxy_requests (String) (defaults to: 'Off')

    Enables forward (standard) proxy requests.

  • allow_from (Optional[String]) (defaults to: undef)

    List of IPs allowed to access proxy.

  • apache_version (Optional[String]) (defaults to: undef)

    Used to verify that the Apache version you have requested is compatible with the module.

  • package_name (Optional[String]) (defaults to: undef)

    Name of the proxy package to install.

  • proxy_via (String) (defaults to: 'On')

    Set local IP address for outgoing proxy connections.

  • proxy_timeout (Optional[Variant[Integer[0],String]]) (defaults to: undef)

    Network timeout for proxied requests.

  • proxy_iobuffersize (Optional[String]) (defaults to: undef)

    Set the size of internal data throughput buffer

See Also:



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 (
  String $proxy_requests                              = 'Off',
  Optional[String] $allow_from                        = undef,
  Optional[String] $apache_version                    = undef,
  Optional[String] $package_name                      = undef,
  String $proxy_via                                   = 'On',
  Optional[Variant[Integer[0],String]] $proxy_timeout = undef,
  Optional[String] $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'],
  }
}