Last active
December 17, 2024 14:18
-
-
Save cmer/e58e90dbf820a850ff4f136f85697be0 to your computer and use it in GitHub Desktop.
Simple, no bullshit TCP port forwarding using HAProxy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
listen l1 | |
bind 0.0.0.0:443 | |
mode tcp | |
timeout connect 4000 | |
timeout client 180000 | |
timeout server 180000 | |
server srv1 host.example.com:9443 |
๐
๐
Great work!
thanks!
Simple, useful, thanks :)
works, thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The config file is at path
/etc/haproxy/haproxy.cfg