Guest User

Untitled

a guest
Nov 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. # Timeout in seconds.
  2. # Duration to give active requests a chance to finish during hot-reloads
  3. #
  4. # Optional
  5. # Default: 10
  6. #
  7. graceTimeOut = 10
  8.  
  9. # Backends throttle duration: minimum duration between 2 events from providers
  10. # before applying a new configuration. It avoids unnecessary reloads if multiples events
  11. # are sent in a short amount of time.
  12. #
  13. # Optional
  14. # Default: "2s"
  15. #
  16. ProvidersThrottleDuration = 10
  17.  
  18. # If set to true invalid SSL certificates are accepted for backends.
  19. # Note: This disables detection of man-in-the-middle attacks so should only be used on secure backend networks.
  20. # Optional
  21. # Default: false
  22. #
  23. # InsecureSkipVerify = true
  24.  
  25. [forwardingTimeouts]
  26.  
  27. # dialTimeout is the amount of time to wait until a connection to a backend server can be established.
  28. #
  29. # Optional
  30. # Default: "30s"
  31. #
  32. dialTimeout = "60s"
  33.  
  34. # responseHeaderTimeout is the amount of time to wait for a server's response headers after fully writing the request (including its body, if any).
  35. #
  36. # Optional
  37. # Default: "0s"
  38. #
  39. responseHeaderTimeout = "10s"
  40.  
  41. [respondingTimeouts]
  42.  
  43. # readTimeout is the maximum duration for reading the entire request, including the body.
  44. #
  45. # Optional
  46. # Default: "0s"
  47. #
  48. readTimeout = "30s"
  49.  
  50. # writeTimeout is the maximum duration before timing out writes of the response.
  51. #
  52. # Optional
  53. # Default: "0s"
  54. #
  55. writeTimeout = "30s"
  56.  
  57. # idleTimeout is the maximum duration an idle (keep-alive) connection will remain idle before closing itself.
  58. #
  59. # Optional
  60. # Default: "180s"
  61. #
  62. idleTimeout = "360s"
Add Comment
Please, Sign In to add comment