From 39cb004e2e54932b1f3af1e356c481ce6239d221 Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Sun, 11 Sep 2022 17:41:24 -0400 Subject: [PATCH] Add stub traefik static configuration --- traefik.toml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 traefik.toml diff --git a/traefik.toml b/traefik.toml new file mode 100644 index 0000000..f131c7e --- /dev/null +++ b/traefik.toml @@ -0,0 +1,27 @@ +[entryPoints] + [entryPoints.http] + address = ":80" + [entryPoints.https] + address = ":443" + [entryPoints.traefik] + address = ":8080" + +[api] + dashboard = true + +[acme] + email = "info@example.com" + storage = "acme.json" + entryPoint = "https" + onHostRule = true + [acme.httpChallenge] + entryPoint = "http" + +[providers] +# [providers.docker] + [providers.file] + directory = "/traefik.conf.d/" + watch = true + +[log] + level = 'INFO'