Last active
March 28, 2019 17:23
-
-
Save tanuck/0640fc46715caa14877ba72510841871 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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