Created
October 10, 2013 17:34
-
-
Save kevinburke/6922355 to your computer and use it in GitHub Desktop.
twilio haproxy config
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
# 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 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please note, our actual configuration has more detail besides this, but I limited the configuration here to things I mentioned in the post.