Advertisement
indonesian

Haproxy config

Nov 28th, 2017
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. global
  2. daemon
  3. maxconn 10000
  4.  
  5. defaults
  6. timeout connect 500s
  7. timeout client 5000s
  8. timeout server 1h
  9.  
  10. frontend sshd
  11. bind *:4444
  12. default_backend forward
  13. timeout client 1h
  14.  
  15. backend forward
  16. mode tcp
  17. server forward1 10.8.0.2:4444
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement