1
0
Fork 0
mirror of https://github.com/nginx-proxy/nginx-proxy synced 2024-05-20 06:26:08 +02:00

feat: add auto keepalive setting

This commit is contained in:
Nicolas Duchon 2023-12-26 18:18:00 +01:00
parent 26db13387e
commit 7ce72d59a9

View File

@ -292,6 +292,7 @@
{{- define "upstream" }}
upstream {{ .Upstream }} {
{{- $server_found := false }}
{{- $servers := 0 }}
{{- $loadbalance := first (keys (groupByLabel .Containers "com.github.nginx-proxy.nginx-proxy.loadbalance")) }}
{{- if $loadbalance }}
# From the container's loadbalance label:
@ -307,6 +308,7 @@ upstream {{ .Upstream }} {
{{- $port := $args.port }}
{{- if $ip }}
{{- $server_found = true }}
{{- $servers = add1 $servers }}
server {{ $ip }}:{{ $port }};
{{- end }}
{{- end }}
@ -316,8 +318,12 @@ upstream {{ .Upstream }} {
server 127.0.0.1 down;
{{- end }}
{{- $keepalive := coalesce (first (keys (groupByLabel .Containers "com.github.nginx-proxy.nginx-proxy.keepalive"))) "disabled" }}
{{- if ne $keepalive "disabled" }}
{{- if and (ne $keepalive "disabled") (gt $servers 0) }}
{{- if eq $keepalive "auto" }}
keepalive {{ mul $servers 2 }};
{{- else }}
keepalive {{ $keepalive }};
{{- end }}
{{- end }}
}
{{- end }}