From c4a6cf1534b864d3941c839d4a4dca7e505bd828 Mon Sep 17 00:00:00 2001 From: Quentin Date: Sat, 12 Sep 2020 10:03:48 +0200 Subject: Rebase first step --- app_config/configuration/traefik/traefik.toml | 45 +++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 app_config/configuration/traefik/traefik.toml (limited to 'app_config/configuration/traefik/traefik.toml') diff --git a/app_config/configuration/traefik/traefik.toml b/app_config/configuration/traefik/traefik.toml new file mode 100644 index 0000000..03fca8a --- /dev/null +++ b/app_config/configuration/traefik/traefik.toml @@ -0,0 +1,45 @@ +InsecureSkipVerify = true +defaultEntryPoints = ["http", "https"] + +[entryPoints] + [entryPoints.admin] + address = ":8082" + + [entryPoints.http] + address = ":80" + [entryPoints.http.redirect] + entryPoint = "https" + + [entryPoints.https] + address = ":443" + compress = true + [entryPoints.https.tls] + +[ping] +entrypoint = "admin" + +[retry] + +[acme] + email = "quentin@dufour.io" + storage = "traefik/acme/account" + entryPoint = "https" + onHostRule = true + + [acme.httpChallenge] + entryPoint = "http" + +[api] + entryPoint = "admin" + dashboard = true + +[consul] + endpoint = "172.17.0.1:8500" + watch = true + prefix = "traefik" + +[consulCatalog] + endpoint = "172.17.0.1:8500" + prefix = "traefik" + domain = "web.deuxfleurs.fr" + exposedByDefault = false -- cgit v1.2.3