Puppet Class: apache::mod::proxy

Defined in:
manifests/mod/proxy.pp

Summary

Installs and configures `mod_proxy`.

Overview

Parameters:

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

    Enables forward (standard) proxy requests.

  • allow_from (Any) (defaults to: undef)

    List of IPs allowed to access proxy.

  • apache_version (Any) (defaults to: undef)

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

  • package_name (Any) (defaults to: undef)

    Name of the proxy package to install.

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

    Set local IP address for outgoing proxy connections.

  • proxy_timeout (Any) (defaults to: undef)

    Network timeout for proxied requests.

  • proxy_iobuffersize (Any) (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 (
  $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'],
  }
}