Puppet Class: apache::mod::rpaf
  
  
  
    - Defined in:
 
    - 
      manifests/mod/rpaf.pp
    
 
  
 
  Summary
  Installs and configures `mod_rpaf`.
Overview
  
    
      
        
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40 
       | 
      
        # File 'manifests/mod/rpaf.pp', line 18
class apache::mod::rpaf (
  Variant[Boolean, String] $sethostname = true,
  Array[Stdlib::IP::Address] $proxy_ips = ['127.0.0.1'],
  String $header                        = 'X-Forwarded-For',
  String $template                      = 'apache/mod/rpaf.conf.erb'
) {
  include apache
  ::apache::mod { 'rpaf': }
  # Template uses:
  # - $sethostname
  # - $proxy_ips
  # - $header
  file { 'rpaf.conf':
    ensure  => file,
    path    => "${apache::mod_dir}/rpaf.conf",
    mode    => $apache::file_mode,
    content => template($template),
    require => Exec["mkdir ${apache::mod_dir}"],
    before  => File[$apache::mod_dir],
    notify  => Class['apache::service'],
  }
}
       |