aboutsummaryrefslogtreecommitdiff
path: root/app/traefik/config
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2021-01-18 16:46:21 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2021-01-18 16:46:21 +0100
commit2c2efdc27684c1382a4949cff8fe06ee36c0f4c0 (patch)
treec01dd9454deeec6f43ce5ccd94d12138e6f9ea18 /app/traefik/config
parent6c8c861dd50aebf4a12232ecc1fab12c5f83bf03 (diff)
parentad6017eea058f7cb6fdf078783f992a4f45a3e15 (diff)
downloadinfrastructure-2c2efdc27684c1382a4949cff8fe06ee36c0f4c0.tar.gz
infrastructure-2c2efdc27684c1382a4949cff8fe06ee36c0f4c0.zip
Merge branch 'master' of git.deuxfleurs.fr:Deuxfleurs/infrastructure
Diffstat (limited to 'app/traefik/config')
-rw-r--r--app/traefik/config/traefik.toml50
1 files changed, 50 insertions, 0 deletions
diff --git a/app/traefik/config/traefik.toml b/app/traefik/config/traefik.toml
new file mode 100644
index 0000000..4a48fde
--- /dev/null
+++ b/app/traefik/config/traefik.toml
@@ -0,0 +1,50 @@
+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
+
+[metrics]
+ [metrics.prometheus]
+ # -- below is for traefik 1.7 see https://doc.traefik.io/traefik/v1.7/configuration/metrics/
+ entryPoint = "admin"