Skip to content

Instantly share code, notes, and snippets.

@kevinburke
Created October 10, 2013 17:34
Show Gist options
  • Star 21 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save kevinburke/6922355 to your computer and use it in GitHub Desktop.
Save kevinburke/6922355 to your computer and use it in GitHub Desktop.
twilio haproxy config
# Twilio HTTP HAProxy Configuration
# Version: 0.1
global
daemon
log 127.0.0.1 local0 info
maxconn 60000
spread-checks 3
defaults twilio-defaults
log global
maxconn 1000
mode http
option http-server-close
timeout client 6s
timeout server 6s
timeout connect 4s
option redispatch
retries 2
frontend twilio-frontend
bind 127.0.0.1:1xxxx # insert your port number here
default_backend twilio-backends
option httplog
backend twilio-backends
balance roundrobin
option httpchk GET /healthcheck
@kevinburke
Copy link
Author

Please note, our actual configuration has more detail besides this, but I limited the configuration here to things I mentioned in the post.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment