Advertisement
Guest User

Untitled

a guest
May 6th, 2019
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1.  
  2. #logLevel = "DEBUG"
  3. logLevel = "INFO" #DEBUG, INFO, WARN, ERROR, FATAL, PANIC"
  4.  
  5. ################################################################
  6.  
  7. defaultEntryPoints = ["http", "https"]
  8. InsecureSkipVerify = true
  9.  
  10. [entryPoints]
  11. [entryPoints.http]
  12. address = ":80"
  13. [entryPoints.http.forwardedHeaders]
  14. [entryPoints.http.redirect]
  15. entryPoint = "https"
  16. [entryPoints.https]
  17. address = ":443"
  18. [entryPoints.https.forwardedHeaders]
  19. [entryPoints.https.tls]
  20.  
  21. [web]
  22. address = ":8080"
  23. ################################################################
  24. # Docker configuration backend
  25. ################################################################
  26. [docker]
  27. endpoint = "unix:///var/run/docker.sock"
  28. domain = "xxxx.xxxxx"
  29. watch = true
  30. exposedbydefault = false
  31.  
  32. [acme]
  33. email = "xxxx"
  34. storage = "acme.json"
  35. entryPoint = "https"
  36. OnHostRule = true
  37. [acme.httpChallenge]
  38. entryPoint = "http"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement