Last active
April 1, 2025 19:11
-
-
Save rlnorthcutt/41e0549f02f7ac98adaf19c71290e204 to your computer and use it in GitHub Desktop.
HAProxy VMWare Horizons Config Example - basic configuration might look like for the custom “Blast” protocol
This file contains hidden or 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
frontend ft_horizon_tcp_blast | |
bind *:22443 | |
default_backend bk_horizon_tcp_blast | |
backend bk_horizon_tcp_blast | |
server srv1 192.168.1.101:22443 check | |
server srv2 192.168.1.102:22443 check | |
balance source | |
udp-lb horizon_udp_blast | |
dgram-bind *:22443 | |
server srv1 192.168.1.101:22443 check | |
server srv2 192.168.1.102:22443 check | |
balance source | |
udp-lb horizon_udp_blast_pcoip | |
dgram-bind *:4172 | |
server srv1 192.168.1.101:4172 check | |
server srv2 192.168.1.102:4172 check | |
balance source |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment