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,19 @@
{{$apps := .Applications}}
[backends]{{range .Tasks}}
[backends.backend{{.AppID | replace "/" "-"}}.servers.server-{{.ID | replace "." "-"}}]
url = "http://{{.Host}}:{{getPort .}}"
{{$appID := .AppID}}
{{range $apps}}
{{if eq $appID .ID}}
weight = {{getWeight .}}
{{end}}
{{end}}
{{end}}
[routes]{{range .Applications}}
[routes.route{{.ID | replace "/" "-"}}]
backend = "backend{{.ID | replace "/" "-"}}"
[routes.route-{{getHost . | replace "/" "-"}}.rules.rule-host-{{getHost . | replace "/" "-"}}]
category = "Host"
value = "{{getHost . | replace "/" "-"}}.{{$.Domain}}"
{{end}}