traefik/integration/fixtures/access_log_config.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

2018-01-24 17:18:03 +00:00
logLevel = "ERROR"
defaultEntryPoints = ["http"]
checkNewVersion = false
2018-01-11 09:04:03 +00:00
[traefikLog]
filePath = "traefik.log"
[accessLog]
filePath = "access.log"
2017-09-07 10:02:03 +00:00
[entryPoints]
[entryPoints.http]
2018-01-11 09:04:03 +00:00
address = ":8000"
[entryPoints.httpRedirect]
address = ":8001"
[entryPoints.httpRedirect.redirect]
entryPoint = "http"
[entryPoints.httpWhitelistReject]
address = ":8002"
[entryPoints.httpWhitelistReject.whiteList]
sourceRange = ["8.8.8.8/32"]
2018-01-11 09:04:03 +00:00
[entryPoints.httpAuth]
address = ":8004"
[entryPoints.httpAuth.auth.basic]
users = ["test:$apr1$H6uskkkW$IgXLP6ewTrSuBkTrqE8wj/", "test2:$apr1$d9hr9HBB$4HxwgUir3HP4EsggP/QNo0"]
[entryPoints.frontendRedirect]
address = ":8005"
[entryPoints.httpFrontendAuth]
address = ":8006"
[entryPoints.httpRateLimit]
address = ":8007"
2018-01-24 17:18:03 +00:00
[entryPoints.digestAuth]
address = ":8008"
[entryPoints.digestAuth.auth.digest]
users = ["test:traefik:a2688e031edb4be6a3797f3882655c05", "test2:traefik:518845800f9e2bfb1f1f740ec24f074e"]
2017-10-02 08:32:02 +00:00
2018-01-11 09:04:03 +00:00
[api]
2017-09-07 10:02:03 +00:00
2018-01-11 09:04:03 +00:00
[docker]
exposedByDefault = false
domain = "docker.local"
2018-11-14 09:18:03 +00:00
watch = true