Puppet Class: confdroid_haproxy::params
- Inherited by:
-
confdroid_haproxy::main::dirs
confdroid_haproxy::main::user
confdroid_haproxy::main::files
confdroid_haproxy::main::config
confdroid_haproxy::main::install
confdroid_haproxy::server::service
confdroid_haproxy::firewall::iptables
confdroid_haproxy::monitoring::fail2ban
- Defined in:
- manifests/params.pp
Overview
confdroid_haproxy::params.pp Module name: confdroid_haproxy Author: Arne Teuke (arne_teuke@confdroid.com)
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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'manifests/params.pp', line 59
class confdroid_haproxy::params (
String $pkg_ensure = 'latest',
Array $reqpackages = ['haproxy','httpd-tools'],
String $hy_host_fqdn = undef,
# firewall
Boolean $hy_manage_fw = true,
String $hy_fw_order_no = '50',
# fail2ban
Boolean $hy_manage_fail2ban = false,
# selinux
Boolean $hy_selinux_allow_stats = false,
# main config
String $hy_http_port = '80',
String $hy_https_port = '443',
String $hy_stats_port = '8404',
String $hy_chroot = '/var/lib/haproxy',
String $hy_pid = '/var/run/haproxy.pid',
String $hy_maxconn = '4000',
String $hy_stats_socket = '/var/lib/haproxy/stats',
String $hy_default_mode = 'tcp',
Boolean $hy_use_http_server_close = false,
Boolean $hy_use_forward_for = false,
Boolean $hy_use_redispatch = true,
String $hy_max_retries = '3',
String $hy_timeout_http_request = '10s',
String $hy_timeout_queue = '1m',
String $hy_timeout_connect = '10s',
String $hy_timeout_client = '1m',
String $hy_timeout_server = '1m',
String $hy_timeout_http_keep_alive = '10s',
String $hy_timeout_check = '10s',
Boolean $hy_hard_stop = true,
String $hy_hard_stop_value = '60s',
String $hy_stats_auth = 'admin:password',
# user
String $hy_user_name = 'haproxy',
String $hy_user_comment = 'haproxy user',
String $hy_user_home = '/var/lib/haproxy',
String $hy_user_shell = '/sbin/nologin',
# logging
String $hy_log_local0 = '127.0.0.1:514 local0',
String $hy_log_local1 = '127.0.0.1:514 local1 notice',
String $hy_log_target = '127.0.0.1',
String $hy_log_facility = 'local2',
String $hy_log_default = 'global',
Boolean $hy_use_tcplog = true,
Boolean $hy_use_httplog = false,
Boolean $hy_use_dontlognull = true,
Boolean $hy_manage_be_users = false,
String $hy_be_userlist = '####',
) {
$fqdn = $facts['networking']['fqdn']
# service
$hy_service = 'haproxy'
# directories
$hy_main_dir = '/etc/haproxy'
$hy_errors_dir = "${hy_main_dir}/errors"
$hy_certs_dir = "${hy_main_dir}/certs"
# files
$hy_main_config = "${hy_main_dir}/haproxy.cfg"
$hy_config_head_erb = 'confdroid_haproxy/haproxy_head.erb'
$hy_config_tail_erb = 'confdroid_haproxy/haproxy_tail.erb'
$hy_400_file = "${hy_errors_dir}/400.http"
$hy_400_erb = 'confdroid_haproxy/errors/400_http.erb'
$hy_403_file = "${hy_errors_dir}/403.http"
$hy_403_erb = 'confdroid_haproxy/errors/403_http.erb'
$hy_408_file = "${hy_errors_dir}/408.http"
$hy_408_erb = 'confdroid_haproxy/errors/408_http.erb'
$hy_500_file = "${hy_errors_dir}/500.http"
$hy_500_erb = 'confdroid_haproxy/errors/500_http.erb'
$hy_502_file = "${hy_errors_dir}/502.http"
$hy_502_erb = 'confdroid_haproxy/errors/502_http.erb'
$hy_503_file = "${hy_errors_dir}/503.http"
$hy_503_erb = 'confdroid_haproxy/errors/503_http.erb'
$hy_504_file = "${hy_errors_dir}/504.http"
$hy_504_erb = 'confdroid_haproxy/errors/504_http.erb'
# includes must be last
include confdroid_haproxy::main::config
}
|