diff --git a/traefik/files/traefik.toml b/traefik/files/traefik.toml index a2a8358..1bc1457 100644 --- a/traefik/files/traefik.toml +++ b/traefik/files/traefik.toml @@ -1,9 +1,9 @@ {% for section in config -%} [{{ section }}] {% for key, val in config[section].iteritems() -%} -{% if val is True -%} +{% if val == True -%} {{ key }} = true -{% elif val is False -%} +{% elif val == False -%} {{ key }} = false {% else -%} {{ key }} = "{{ val }}"