1
如果負載均衡器命中maxconn,是否可以從Haproxy發回自定義http響應?Haproxy:當maxconn命中時發送自定義http響應
我的意圖是發送一個相當於忙音(但不是503),如果服務器很忙。
如果負載均衡器命中maxconn,是否可以從Haproxy發回自定義http響應?Haproxy:當maxconn命中時發送自定義http響應
我的意圖是發送一個相當於忙音(但不是503),如果服務器很忙。
的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>