diff --git a/defaults/main.yml b/defaults/main.yml index 56c87c4..ab8283a 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -102,6 +102,6 @@ haproxy_maxconn: 4096 # chksize: 16384 # comp_maxlevel: 1 # http_maxhdr: 101 -# http_maxaccept: 64 +# maxaccept: 64 # ssl_cachesize: 20000 # ssl_lifetime: 300 diff --git a/templates/haproxy.cfg.j2 b/templates/haproxy.cfg.j2 index 1ffbf68..5119d04 100644 --- a/templates/haproxy.cfg.j2 +++ b/templates/haproxy.cfg.j2 @@ -14,7 +14,7 @@ global tune.chksize {{ haproxy_tuning_params.chksize | default('16384') }} tune.comp.maxlevel {{ haproxy_tuning_params.comp_maxlevel | default('1') }} tune.http.maxhdr {{ haproxy_tuning_params.http_maxhdr | default('101') }} - tune.http.maxaccept{{ haproxy_tuning_params.http_maxaccept | default('64') }} + tune.maxaccept {{ haproxy_tuning_params.maxaccept | default('64') }} tune.ssl.cachesize {{ haproxy_tuning_params.ssl_cachesize | default('20000') }} tune.ssl.lifetime {{ haproxy_tuning_params.ssl_lifetime | default('300') }} {% endif %}