64 lines
1.1 KiB
TOML
64 lines
1.1 KiB
TOML
####################
|
|
# - Global Config
|
|
####################
|
|
[global]
|
|
checkNewVersion = false
|
|
sendAnonymousUsage = false
|
|
|
|
[experimental]
|
|
http3 = true
|
|
|
|
[api]
|
|
dashboard = false
|
|
insecure = false
|
|
debug = false
|
|
disabledashboardad = true
|
|
|
|
[log]
|
|
level = "DEBUG"
|
|
|
|
|
|
|
|
####################
|
|
# - Certificate Resolvers
|
|
# * https://doc.traefik.io/traefik/https/acme/#certificate-resolvers
|
|
####################
|
|
[certificatesResolvers.letsencrypt.acme]
|
|
email = "{{ email_letsencrypt }}"
|
|
storage = "/data-certs/acme.json"
|
|
#caServer = "https://acme-staging-v02.api.letsencrypt.org/directory"
|
|
|
|
[certificatesResolvers.letsencrypt.acme.tlsChallenge]
|
|
|
|
|
|
|
|
####################
|
|
# - Entry Points
|
|
####################
|
|
#[entryPoints.ssh]
|
|
#address = ":22"
|
|
|
|
|
|
[entryPoints.websecure]
|
|
address = ":443"
|
|
http3.advertisedPort = 443
|
|
|
|
|
|
[entryPoints.web]
|
|
address = ":80"
|
|
|
|
[entryPoints.web.http.redirections.entryPoint]
|
|
to = "websecure"
|
|
scheme = "https"
|
|
permanent = true
|
|
|
|
|
|
|
|
####################
|
|
# - Providers
|
|
####################
|
|
[providers.file]
|
|
directory = "/data-providers"
|
|
watch = false
|
|
debugLogGeneratedTemplate = true
|