From c3b267c40a2081a27cb961c7871b0fab96a2197c Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Fri, 18 May 2018 00:47:31 -0400 Subject: [PATCH] Fixing config parser --- traefik/files/traefik.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/traefik/files/traefik.toml b/traefik/files/traefik.toml index a8e19f2..c91c3c2 100644 --- a/traefik/files/traefik.toml +++ b/traefik/files/traefik.toml @@ -1,4 +1,4 @@ -{% for section in config -%} +{% for section in config.items() -%} [{{ section }}] {% for key, val in section.items() -%} {{ key }} = {{ val }}