26 lines
451 B
TOML
26 lines
451 B
TOML
logLevel = "INFO"
|
|
defaultEntryPoints = ["https", "http"]
|
|
|
|
[web]
|
|
address = ":8080"
|
|
|
|
[docker]
|
|
watch = true
|
|
exposedbydefault = false
|
|
|
|
[entryPoints]
|
|
[entryPoints.http]
|
|
address = ":80"
|
|
[entryPoints.http.redirect]
|
|
entryPoint = "https"
|
|
[entryPoints.https]
|
|
address = ":443"
|
|
[entryPoints.https.tls]
|
|
|
|
[acme]
|
|
email = "tls-admin@org.example"
|
|
storage = "acme.json"
|
|
entryPoint = "https"
|
|
OnHostRule = true
|
|
[acme.httpChallenge]
|
|
entryPoint = "http" |