aboutsummaryrefslogtreecommitdiff
path: root/app/config/configuration/traefik/traefik.toml
blob: d38e2caa1ff6d85822470609d181b9b0fcf3e459 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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 = "metrics" # default to "/traefik"
    buckets = [0.1,0.3,1.2,5.0] # default buckets
    # -- options below seem to ONLY be for traefik v2
    # addServicesLabels = true
    # addEntryPointsLabels = true