Advertisement
RussellSeymour

Untitled

Dec 2nd, 2017
475
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. debug = false
  2.  
  3. logLevel = "DEBUG"
  4.  
  5. defaultEntryPoints = ["http", "https"]
  6.  
  7. traefikLogsFile = "/var/log/traefik.log"
  8. accessLogsFile = "/var/log/access.log"
  9.  
  10. [entryPoints]
  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. # Enable ACME (Let's Encrypt) automate SSL
  21. [acme]
  22. email = "russell.seymour@turtlesystems.co.uk"
  23. storage = "/etc/traefik/acme.json"
  24. dnsProvider = "route53"
  25. entryPoint = "https"
  26. onDemand = true
  27. OnHostRule = true
  28.  
  29. # Allow access to the Web UI
  30. [web]
  31. address = ":8080"
  32.  
  33. # Configure how docker will be run
  34. [docker]
  35.  
  36. endpoint = "unix://var/run/docker.sock"
  37.  
  38. domain = "traefik"
  39.  
  40. watch = true
  41.  
  42. exposedbydefault = false
  43.  
  44. swarmmode = true%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement