Update README_GO.md
All checks were successful
Build Go Binary / build (push) Successful in 30s

This commit is contained in:
holzi1005 2025-08-06 17:27:01 +02:00
parent 27ab196460
commit 5e645198a7

View file

@ -21,14 +21,13 @@ backend {{ .Name }}
cookie {{ .CookieName }} {{ .CookieFlags }}
{{- end }}
{{- $backend := . }}
{{- range .Servers }}
server {{ .Name }} {{ .Address }}:{{ .Port }}{{ if $.HealthCheck }} check{{ end }}{{ if $.CookieName }} cookie {{ .Cookie }}{{ end }} {{ $.ServerOptions }}
server {{ .Name }} {{ .Address }}:{{ .Port }}{{ if $backend.HealthCheck }} check{{ end }}{{ if $backend.CookieName }} cookie {{ .Cookie }}{{ end }}{{ if $backend.ServerOptions }} {{ $backend.ServerOptions }}{{ end }}
{{- end }}
{{- end }}
{{- end }}
```