有没有办法将自定义探针与 apache httpd 负载平衡器一起使用?
在下面来自 apache 文档的示例中,apache 将通过 ping 服务端口来确定每个节点的可用性。相反,我希望 apache 调用一些 /probe 服务,该服务将在节点可用时返回“ok”。那有可能吗?
<Proxy balancer://myset>
BalancerMember http://www2.example.com:8080
BalancerMember http://www3.example.com:8080
ProxySet lbmethod=bytraffic
</Proxy>
ProxyPass "/images/" "balancer://myset/"
ProxyPassReverse "/images/" "balancer://myset/"