proxy/config/traefik.toml

55 lines
1.1 KiB
TOML
Raw Normal View History

2019-12-01 01:16:21 +01:00
[global]
checkNewVersion = false
sendAnonymousUsage = false
2018-01-17 20:19:59 +01:00
[serversTransport]
insecureSkipVerify = true
2017-07-09 17:46:14 +02:00
[entryPoints]
2019-12-01 01:16:21 +01:00
[entryPoints.web]
2017-07-09 17:46:14 +02:00
address = ":80"
2019-12-01 01:16:21 +01:00
[entryPoints.websecure]
address = ":443"
2019-11-30 19:00:55 +01:00
2019-12-01 01:16:21 +01:00
[log]
level = "INFO"
2019-12-01 01:16:21 +01:00
[accessLog]
format = "common"
filePath = "/dev/null"
[api]
dashboard = true
[metrics]
[metrics.prometheus]
entryPoint = "traefik"
buckets = [0.1,0.3,1.2,5.0]
2019-12-01 01:16:21 +01:00
[ping]
[providers.docker]
network = "proxy_web"
exposedByDefault = false
defaultRule = "Host(`{{ normalize .Name }}.docker.localhost`)"
[providers.file]
directory = "/etc/traefik/dynamic"
watch = true
2019-12-01 01:16:21 +01:00
[certificatesResolvers.default.acme]
email = "hostmaster@zom.bi"
storage = "/cert/acme.json"
[certificatesResolvers.default.acme.httpChallenge]
entryPoint = "web"
[[tls.certificates]]
certFile = "cert/snakeoil.pem"
keyFile = "cert/snakeoil.key"
[[tls.certificates]]
certFile = "cert/bitmask.me.origin.pem"
keyFile = "cert/bitmask.me.origin.key"
[[tls.certificates]]
certFile = "cert/grun.host.origin.pem"
keyFile = "cert/grun.host.origin.key"