Unverified Commit 236f8386 authored by Tom Moulard's avatar Tom Moulard
Browse files

traefik: adding simple config file

parent 0fb5b756
Loading
Loading
Loading
Loading

traefik/acme.json

0 → 100644
+0 −0

Empty file added.

traefik/traefik.toml

0 → 100644
+33 −0
Original line number Diff line number Diff line
logLevel = "DEBUG"
defaultEntryPoints = ["http", "https"]

[accessLog]
[traefikLog]

[entryPoints]
  [entryPoints.http]
    address = ":80"
      [entryPoints.http.redirect]
        entryPoint = "https"
  [entryPoints.https]
    address = ":443"
      [entryPoints.https.tls]

# API definition
[api]
entryPoint = "traefik"
dashboard = true
  [api.statistics]
    recentErrors = 42

[acme]
email = "tom@moulard.org"
storage = "acme.json"
entryPoint = "https"
onHostRule = true
  [acme.httpChallenge]
  entryPoint = "http"

[docker]
watch = true
exposedByDefault = false
 No newline at end of file