Skip to content

Instantly share code, notes, and snippets.

@tanuck
Last active March 28, 2019 17:23
Show Gist options
  • Save tanuck/0640fc46715caa14877ba72510841871 to your computer and use it in GitHub Desktop.
Save tanuck/0640fc46715caa14877ba72510841871 to your computer and use it in GitHub Desktop.
# traefik.toml
logLevel = "INFO"
defaultEntryPoints = ["https"]
[entryPoints]
[entryPoints.https]
address = ":443"
compress = false
[entryPoints.https.tls]
[entryPoints.https.tls.ClientCA]
files = ["/ssl/client-ca.crt"]
optional = false
[[entryPoints.https.tls.certificates]]
CertFile = "/ssl/tls.crt"
KeyFile = "/ssl/tls.key"
[kubernetes]
disablePassHostHeaders = true
[accessLog]
format = "json"
[web]
address = ":8080"
[web.metrics.prometheus]
buckets = [0.1,0.3,1.2,5.0]
[tracing]
backend = "jaeger"
serviceName = "ingress-traefik"
[tracing.jaeger]
samplingServerURL = "http://jaeger-agent:5778/sampling"
samplingType = "const"
samplingParam = 1.0
localAgentHostPort = "jaeger-agent:6831"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment