1
0
Fork 0

go-bindata static files and templates

This commit is contained in:
emile 2015-09-11 18:47:54 +02:00
parent 79e5ec435a
commit 4a83136970
6 changed files with 32 additions and 9 deletions

View file

@ -0,0 +1,14 @@
[backends]{{range .Containers}}
[backends.backend-{{getBackend .}}.servers.server-{{.Name | replace "/" "" | replace "." "-"}}]
url = "http://{{.NetworkSettings.IPAddress}}:{{getPort .}}"
weight = {{getWeight .}}
{{end}}
[routes]{{range $host, $containers := .Hosts}}
[routes.route-{{$host}}]
{{$container := index $containers 0}}
backend = "backend-{{getBackend $container}}"
[routes.route-{{$host}}.rules.rule-host-{{$host}}]
category = "Host"
value = "{{$host}}.{{$.Domain}}"
{{end}}