Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions images/router/haproxy/conf/haproxy-config.template
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,13 @@ global
{{- end }}
{{- end }}

# The user can provide a set of default supported groups using the ROUTER_CURVES variable.
# By default when a ROUTER_CURVES is not defined HAProxy
# will use its built-in default supported groups for TLS key exchange.
{{- if (env "ROUTER_CURVES") }}
ssl-default-bind-curves {{ env "ROUTER_CURVES" }}
{{- end }}

defaults
{{- with $value := env "ROUTER_MAX_CONNECTIONS" "50000" }}
{{- if isInteger $value }}
Expand Down