You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
700 B

3 years ago
  1. logLevel = "WARN"
  2. defaultEntryPoints = ["http", "https"]
  3. # Connection to docker host system (docker.sock)
  4. [docker]
  5. endpoint = "unix:///var/run/docker.sock"
  6. domain = "digitalcourage.de"
  7. watch = true
  8. # This will hide all docker containers that don't have explicitly
  9. # set label to "enable"
  10. exposedbydefault = false
  11. # Force HTTPS
  12. [entryPoints]
  13. [entryPoints.http]
  14. address = ":80"
  15. [entryPoints.http.redirect]
  16. entryPoint = "https"
  17. [entryPoints.https]
  18. address = ":443"
  19. [entryPoints.https.tls]
  20. # Let's encrypt configuration
  21. [acme]
  22. email = "operating@digitalcourage.de"
  23. storage="acme.json"
  24. entryPoint="https"
  25. OnHostRule = true
  26. [acme.httpChallenge]
  27. entryPoint = "http"