Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rlnorthcutt/41e0549f02f7ac98adaf19c71290e204 to your computer and use it in GitHub Desktop.
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
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