Hi I have 4 apache web servers One is in the DMZ as a http gateway (172.15.**.**), this passed requests (reverse proxy) to my load balancer (http://myserver1.domain.com.int) My load balancer splits requests between http://myserver2.domain.com.int, and http://myserver3.domain.com.int, and retains the URL of the http gateway in the DMZ (172.15.**.**) Brilliant! all works but I have some issues. We need to configure this too work for internal requests because we are using Kerberos SSO for internal people. The problem is that internal users on every request are forwarded back out to the DMZ gateway server and the Kerberos ticket is lost. Internal people will only come from one place which will be a link on our intranet. We need to separate internal requests to the IP or FQDN of the machine and keep them there! I am trying virtual hosts via the internal IP address which works but doesnt preserve the IP in the URL. It just forwards back to the gateway Any ideas Essentially we have two internal addresss, for both servers http://myserver3.domain.com.int:10.15.**.** http://myserver2.domain.com.int:10.15.**.** and all traffic comes through the gateway and into the back office to these servers. We just need to preserve the internal IP address when someone lands on one of the Load balanced servers, so it doesnt get forwarded to the gateway and go back outside the network.
Just to make things a little clearer, I need requests to an IP address kept on the servers and not proxyPassed to the gateway I think this config might have to happen on the load balancer Cheers