| 12345678910111213141516171819202122232425262728293031 |
- defaultEntryPoints = ["http", "https"]
- # note that the web provider is deprecated, should use api instead
- [web]
- address = ":8080"
- [web.auth.basic]
- users = ["use htpasswd to generate"]
- [entryPoints]
- [entryPoints.http]
- address = ":80"
- [entryPoints.http.redirect]
- entryPoint = "https"
- [entryPoints.https]
- address = ":443"
- [entryPoints.https.tls]
- [docker]
- endpoint = "unix:///var/run/docker.sock"
- domain = "docker.local"
- watch = true
- [acme]
- email = "user@example.com"
- storage = "acme.json"
- entryPoint = "https"
- onHostRule = true
- onDemand = false
- [acme.dnsChallenge]
- provider = "digitalocean"
- delayBeforeCheck = 0
|