Advertisement
Guest User

Untitled

a guest
Jan 20th, 2019
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. #debug = true
  2.  
  3. logLevel = "DEBUG" #DEBUG, INFO, WARN, ERROR, FATAL, PANIC
  4.  
  5. defaultEntryPoints = ["https", "http"]
  6. InsecureSkipVerify = true
  7. sendAnonymousUsage = false
  8. checkNewVersion = false
  9.  
  10. [api]
  11. # Enable more detailed statistics.
  12. [api.statistics]
  13.  
  14. # Number of recent errors logged.
  15. #
  16. # Default: 10
  17. #
  18. recentErrors = 100
  19.  
  20. [traefikLog]
  21. filePath = "/etc/traefik/log/traefik.log"
  22.  
  23. [accessLog]
  24. filePath = "/etc/traefik/log/access.log"
  25.  
  26. [entryPoints]
  27. [entryPoints.http]
  28. address = ":80"
  29. [entryPoints.http.redirect]
  30. entryPoint = "https"
  31. [entryPoints.https]
  32. address = ":443"
  33. [entryPoints.https.tls]
  34. sniStrict = true
  35.  
  36. [retry]
  37.  
  38. [file]
  39. directory = "/etc/traefik/rules"
  40. watch = true
  41.  
  42. [docker]
  43. endpoint = "unix:///var/run/docker.sock"
  44. domain = "docker.local"
  45. watch = true
  46. exposedByDefault = false
  47.  
  48. [acme]
  49. email = "myemail"
  50. storage = "/etc/traefik/acme.json"
  51. entryPoint = "https"
  52. OnHostRule = true
  53. acmeLogging = true
  54.  
  55. [acme.tlsChallenge]
  56.  
  57. [[acme.domains]]
  58. main = "mydomain.tld"
  59. sans = ["nextcloud.mydomain.tld", "organizr.mydomain.tld", "nzbget.mydomain.tld", "radarr.mydomain.tld", "sonarr.mydomain.tld"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement