I would like to configure two servers to achieve load balancing (maybe using mod_proxy_balancer). The problem is not the number of requests, but the load associated with each request (which I want to share between servers).
The question is, can one of the 'backend servers' be also used to receive and distribute the requests?
I mean, having something like
<Proxy balancer://mycluster>
**BalancerMember http://127.0.0.1** (or localhost?)
BalancerMember http://62.148.159.17
</Proxy>
Thank you...