2023-08-13 04:49:19 +02:00
|
|
|
####################
|
|
|
|
# - Global Config
|
|
|
|
####################
|
|
|
|
[global]
|
|
|
|
checkNewVersion = false
|
|
|
|
sendAnonymousUsage = false
|
|
|
|
|
|
|
|
[api]
|
|
|
|
dashboard = false
|
|
|
|
insecure = false
|
|
|
|
debug = false
|
|
|
|
|
|
|
|
[log]
|
2023-08-21 09:03:34 +02:00
|
|
|
level = "INFO"
|
|
|
|
|
|
|
|
[accessLog]
|
2023-08-13 04:49:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
####################
|
|
|
|
# - Certificate Resolvers
|
|
|
|
# * https://doc.traefik.io/traefik/https/acme/#certificate-resolvers
|
|
|
|
####################
|
|
|
|
[certificatesResolvers.letsencrypt.acme]
|
|
|
|
email = "{{ email_letsencrypt }}"
|
|
|
|
storage = "/data-certs/acme.json"
|
2023-08-21 09:03:34 +02:00
|
|
|
caServer = "https://acme-staging-v02.api.letsencrypt.org/directory"
|
2023-08-13 04:49:19 +02:00
|
|
|
|
|
|
|
[certificatesResolvers.letsencrypt.acme.tlsChallenge]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
####################
|
|
|
|
# - Entry Points
|
|
|
|
####################
|
|
|
|
#[entryPoints.ssh]
|
|
|
|
#address = ":22"
|
|
|
|
|
|
|
|
|
|
|
|
[entryPoints.websecure]
|
|
|
|
address = ":443"
|
|
|
|
|
|
|
|
|
|
|
|
[entryPoints.web]
|
|
|
|
address = ":80"
|
|
|
|
|
|
|
|
[entryPoints.web.http.redirections.entryPoint]
|
|
|
|
to = "websecure"
|
|
|
|
scheme = "https"
|
|
|
|
permanent = true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
####################
|
|
|
|
# - Providers
|
|
|
|
####################
|
|
|
|
[providers.file]
|
|
|
|
directory = "/data-providers"
|
|
|
|
watch = false
|