traefik.yml 594 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. api:
  2. insecure: true
  3. dashboard: true
  4. providers:
  5. docker:
  6. endpoint: unix:///var/run/docker.sock
  7. file:
  8. filename: /etc/traefik/static.yaml
  9. entryPoints:
  10. gitssh:
  11. address: ":10022"
  12. web:
  13. address: ":80"
  14. http:
  15. redirections:
  16. entryPoint:
  17. to: websecure
  18. scheme: https
  19. websecure:
  20. address: ":443"
  21. certificatesResolvers:
  22. le:
  23. acme:
  24. email: jason@jasonplayne.com
  25. storage: /etc/traefik/acme.json
  26. httpChallenge:
  27. # used during the challenge
  28. entryPoint: web
  29. #accessLog: {}
  30. metrics:
  31. prometheus: {}