misc: fix handling boolean values

Fixes: https://github.com/jitsi/docker-jitsi-meet/issues/30
This commit is contained in:
Saúl Ibarra Corretgé
2019-01-28 23:11:03 +01:00
parent e3583c72a6
commit 30c425811e
6 changed files with 8 additions and 8 deletions

View File

@@ -5,6 +5,6 @@ org.jitsi.jicofo.BRIDGE_MUC={{ .Env.JVB_BREWERY_MUC }}@{{ .Env.XMPP_INTERNAL_MUC
org.jitsi.jicofo.jigasi.BREWERY={{ .Env.JIGASI_BREWERY_MUC}}@{{ .Env.XMPP_INTERNAL_MUC_DOMAIN }}
{{ end }}
{{ if .Env.ENABLE_AUTH }}
{{ if .Env.ENABLE_AUTH | default "0" | toBool }}
org.jitsi.jicofo.auth.URL=XMPP:{{ .Env.XMPP_DOMAIN }}
{{ end }}