Puppet Class: apache::mod::cluster
- Defined in:
 - manifests/mod/cluster.pp
 
Summary
Installs `mod_cluster`.Overview
    Note:
    
  
There is no official package available for mod_cluster, so you must make it available outside of the apache module. Binaries can be found [here](modcluster.io/).
        51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87  | 
      
        # File 'manifests/mod/cluster.pp', line 51
class apache::mod::cluster (
  String $allowed_network,
  String $balancer_name,
  Stdlib::IP::Address $ip,
  String $version,
  Boolean $enable_mcpm_receive                 = true,
  Stdlib::Port $port                           = 6666,
  Integer $keep_alive_timeout                  = 60,
  Stdlib::IP::Address $manager_allowed_network = '127.0.0.1',
  Integer $max_keep_alive_requests             = 0,
  Boolean $server_advertise                    = true,
  Optional[String] $advertise_frequency        = undef,
) {
  include apache
  ::apache::mod { 'proxy': }
  ::apache::mod { 'proxy_ajp': }
  ::apache::mod { 'manager': }
  ::apache::mod { 'proxy_cluster': }
  ::apache::mod { 'advertise': }
  if (versioncmp($version, '1.3.0') >= 0 ) {
    ::apache::mod { 'cluster_slotmem': }
  } else {
    ::apache::mod { 'slotmem': }
  }
  file { 'cluster.conf':
    ensure  => file,
    path    => "${apache::mod_dir}/cluster.conf",
    mode    => $apache::file_mode,
    content => template('apache/mod/cluster.conf.erb'),
    require => Exec["mkdir ${apache::mod_dir}"],
    before  => File[$apache::mod_dir],
    notify  => Class['apache::service'],
  }
}
       |