Smaller timeouts for HaProxy
This is needed to quickly detect the downage from a service. With these timeouts 12 seonds are needed for HaProxy to return an initial 503. All other 503 are instance since the service is not detected up again.
This commit is contained in:
parent
5d7dc56684
commit
ded12bbea4
@ -3,13 +3,14 @@ global
|
||||
|
||||
defaults
|
||||
option http-use-htx
|
||||
timeout connect 10s
|
||||
timeout connect 3s
|
||||
timeout client 10s
|
||||
timeout client-fin 10s
|
||||
timeout server 10s
|
||||
timeout server-fin 10s
|
||||
timeout check 10s
|
||||
timeout check 2s
|
||||
timeout tunnel 10s
|
||||
timeout queue 2s
|
||||
log global
|
||||
option httplog
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user