Advertisement
BoogeyCZ

Untitled

Feb 17th, 2019
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. debug = false
  2.  
  3. logLevel = "WARNING"
  4. defaultEntryPoints = ["https","http"]
  5.  
  6. [entryPoints]
  7. [entryPoints.traefik]
  8. address = ":8081"
  9. [entryPoints.http_acme]
  10. address = ":8080"
  11. [entryPoints.http]
  12. address = ":80"
  13. [entryPoints.http.redirect]
  14. entryPoint = "https"
  15. [entryPoints.https]
  16. address = ":443"
  17. [entryPoints.https.tls]
  18.  
  19.  
  20. [retry]
  21.  
  22. [docker]
  23. swarmMode = true
  24. endpoint = "unix:///var/run/docker.sock"
  25. domain = "tucnak.eu"
  26. watch = true
  27. exposedByDefault = false
  28.  
  29. [acme]
  30. email = "daleckystepan@gmail.com"
  31. storage = "/acme.json"
  32. entryPoint = "https"
  33. #onHostRule = true # Generate cert for each service separately
  34.  
  35. [[acme.domains]]
  36. main = "tucnak.eu"
  37. sans = ["www.tucnak.eu", "traefik.int.tucnak.eu", "portainer.int.tucnak.eu", "jenkins.int.tucnak.eu", "grafana.int.tucnak.eu", "prometheus.int.tucnak.eu", "alertmanager.int.tucnak.eu", "cadvisor.int.tucnak.eu"]
  38.  
  39. [acme.httpChallenge]
  40. entryPoint = "http_acme"
  41.  
  42. [api]
  43. entryPoint = "traefik"
  44. dashboard = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement