Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. global
  2. log 127.0.0.1:514 local0 info
  3. log 127.0.0.1:514 local0 debug
  4. #log 127.0.0.1:514 local1 notice
  5. #log loghost local0 info
  6. maxconn 4096
  7. #chroot /usr/share/haproxy
  8. #user haproxy
  9. #group haproxy
  10. daemon
  11. debug
  12. #quiet
  13. #ssl-server-verify none
  14. defaults
  15. mode tcp
  16. log global
  17. option httplog
  18. option dontlognull
  19. option http-server-close
  20. option redispatch
  21. retries 3
  22. timeout http-request 10s
  23. timeout queue 1m
  24. timeout connect 10s
  25. timeout client 1m
  26. timeout server 1m
  27. timeout http-keep-alive 10s
  28. timeout check 10s
  29. maxconn 3000
  30.  
  31. frontend https_in
  32. bind *:443
  33. mode tcp
  34. option tcplog
  35. timeout client 1m
  36. default_backend https
  37.  
  38. backend https
  39. mode tcp
  40. option tcplog
  41. option log-health-checks
  42. #option redispatch
  43. server halocb x.x.x.x:443 check send-proxy-v2
  44.  
  45. global
  46. log 127.0.0.1:514 local0 info
  47. log 127.0.0.1:514 local0 debug
  48. #log 127.0.0.1:514 local1 notice
  49. #log loghost local0 info
  50. maxconn 4096
  51. #chroot /usr/share/haproxy
  52. #user haproxy
  53. #group haproxy
  54. daemon
  55. debug
  56. #quiet
  57. #ssl-server-verify none
  58. defaults
  59. mode tcp
  60. log global
  61. option httplog
  62. option dontlognull
  63. option http-server-close
  64. option redispatch
  65. retries 3
  66. timeout http-request 10s
  67. timeout queue 1m
  68. timeout connect 10s
  69. timeout client 1m
  70. timeout server 1m
  71. timeout http-keep-alive 10s
  72. timeout check 10s
  73. maxconn 3000
  74.  
  75. frontend https_in
  76. bind *:443
  77. mode tcp
  78. option tcplog
  79. timeout client 1m
  80. default_backend https
  81.  
  82. backend https
  83. mode tcp
  84. option tcplog
  85. option log-health-checks
  86. #option redispatch
  87. server halocb mysite.ul.com:443 check
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement