Haproxy:在达到maxconn时发送自定义http响应

时间:2011-08-01 08:31:38

标签: load-balancing haproxy

如果负载均衡器达到maxconn,是否可以从Haproxy发回自定义http响应?

如果服务器正忙,我的目的是发送等效的忙音(但不是503)。

1 个答案:

答案 0 :(得分:2)

您的配置中可以使用errorfile关键字:

errorfile 503 /etc/haproxy/errors/503.http

503.http就像:

HTTP/1.0 503 Service Unavailable^                                                                                      Cache-Control: no-cache
Connection: close
Content-Type: text/html

<html><body><h1>503 Service Unavailable</h1>
Sorry, no server is available to handle this request.
</body></html>