traefik.toml 427 B

1234567891011121314151617181920212223
  1. defaultEntryPoints = ["http", "https"]
  2. [entryPoints]
  3. [entryPoints.http]
  4. address = ":80"
  5. [entryPoints.http.redirect]
  6. entryPoint = "https"
  7. [entryPoints.https]
  8. address = ":443"
  9. [entryPoints.https.tls]
  10. [web]
  11. address = ":8080"
  12. [acme]
  13. email = "email@example.org"
  14. storage = "acme.json"
  15. entryPoint = "https"
  16. onHostRule = true
  17. [acme.httpChallenge]
  18. entryPoint = "http"
  19. [[acme.domais]]
  20. main = "localhost"