traefik/integration/fixtures/access_log_config.toml

42 lines
1 KiB
TOML
Raw Normal View History

2017-09-07 10:02:03 +00:00
################################################################
# Global configuration
################################################################
2018-01-11 09:04:03 +00:00
[traefikLog]
filePath = "traefik.log"
[accessLog]
filePath = "access.log"
2017-09-07 10:02:03 +00:00
logLevel = "ERROR"
defaultEntryPoints = ["http"]
2018-01-11 09:04:03 +00:00
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"
whiteListSourceRange = ["8.8.8.8/32"]
[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"
2017-09-07 10:02:03 +00:00
2017-10-02 08:32:02 +00:00
checkNewVersion = false
2018-01-11 09:04:03 +00:00
[api]
dashboard = false
2017-09-07 10:02:03 +00:00
2018-01-11 09:04:03 +00:00
[docker]
exposedByDefault = false
domain = "docker.local"
watch = true