updated haproxy state
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Paul 2025-02-24 14:16:02 +01:00
parent f3c19b26b7
commit 0248fb8f11

View File

@ -95,6 +95,10 @@ global
maxconn 1000
set-var proc.country str('{{ country }}')
set-var proc.location str('{{ location }}')
# Lua
tune.lua.maxmem {{ haproxy.config.lua_max_mem }}
tune.lua.bool-sample-conversion normal
lua-prepend-path {{ haproxy.config.dir }}/mods/?.so cpath
lua-prepend-path {{ haproxy.config.dir }}/scripts/?.lua
{%- for script,params in haproxy.config.scripts.items() %}
@ -102,6 +106,7 @@ global
lua-load {{ haproxy.config.dir }}/{{ params.path }} {% if "args" in params.keys() %}{{ params.args|join(" ") }}{% endif %}
{%- endif %}
{%- endfor %}
{%- if haproxy.config.api.enable %}
{{ api() }}
{%- endif %}
@ -114,7 +119,6 @@ global
ssl-default-server-ciphers {{ haproxy.config.ssl_ciphers|join(":") }}
ssl-default-server-options {{ haproxy.config.ssl_options|join(" ") }}
tune.lua.maxmem {{ haproxy.config.lua_max_mem }}
{% if haproxy.config.quic|default(true) %}
expose-experimental-directives
.if feature(QUIC)