formula-traefik/traefik/files/traefik.toml
2018-05-18 16:23:13 -04:00

13 lines
255 B
TOML

{% for section in config -%}
[{{ section }}]
{% for key, val in config[section].iteritems() -%}
{% if val is True -%}
{{ key }} = true
{% elif val is False -%}
{{ key }} = false
{% else -%}
{{ key }} = "{{ val }}"
{% endif -%}
{% endfor -%}
{% endfor -%}