Skip to content

Instantly share code, notes, and snippets.

@haproxytechblog
Created December 8, 2020 16:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haproxytechblog/641a7a3f4238a3f74214258b2a64febe to your computer and use it in GitHub Desktop.
Save haproxytechblog/641a7a3f4238a3f74214258b2a64febe to your computer and use it in GitHub Desktop.
HTTP Keep-Alive, Pipelining, Multiplexing and Connection Pooling
backend servers
# connections will be marked as private and can't be shared between users
server srv1 10.0.0.1:443 check ssl sni hdr(Host)
# not marked private, is reusable
server srv2 10.0.0.2:443 check ssl sni str(my.domain.com)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment