Forum Moderators: phranque
I thought I could just set up a virtual host on Server A to ProxyPassReverse all requests to Server B. In fact, I did and it worked instantly. Unfortunately, it is also really really slow compared to directly connecting to Server B.
It almost seems like Server A is bottlenecked by how many simultaneous requests it can pass to Server B? Just a theory... really I'm hoping for any performance tuning tips.
Or, perhaps an entirely different solution? I'm not a network guy (and neither is my network guy) so maybe there's just some way to configure the router to split the web traffic between two servers?
Here's how I have my virtual host setup:
<VirtualHost 192.168.123.a:80>
ServerName subdomain.example.com
ProxyRequests Off
ProxyPass / http://192.168.123.b/
ProxyPassReverse / http://192.168.123.b/
... other code here ...
</VirtualHost>