traefik.toml 673 B

12345678910111213141516171819202122232425262728293031
  1. defaultEntryPoints = ["http", "https"]
  2. # note that the web provider is deprecated, should use api instead
  3. [web]
  4. address = ":8080"
  5. [web.auth.basic]
  6. users = ["use htpasswd to generate"]
  7. [entryPoints]
  8. [entryPoints.http]
  9. address = ":80"
  10. [entryPoints.http.redirect]
  11. entryPoint = "https"
  12. [entryPoints.https]
  13. address = ":443"
  14. [entryPoints.https.tls]
  15. [docker]
  16. endpoint = "unix:///var/run/docker.sock"
  17. domain = "docker.local"
  18. watch = true
  19. [acme]
  20. email = "user@example.com"
  21. storage = "acme.json"
  22. entryPoint = "https"
  23. onHostRule = true
  24. onDemand = false
  25. [acme.dnsChallenge]
  26. provider = "digitalocean"
  27. delayBeforeCheck = 0