I have a web server and some load balancers, to avoid exposing the external IP's of the LB's I wanted to install a Ubuntu Apache2 (doesn't have to be) based Proxy. I want it to: Client ---> Domain ---> Proxy ---> Web Server and reply: Web Server ---> Proxy ---> Domain ---> Client
I have googled and googled and get similar answers but none seem to work, each time I get this: Client ---> Domain ---> Proxy ---> Web Server and reply: Web Server ---> Client
I'm sure I'm doing something stupid! Please be gentle My apache2 site conf is:
<VirtualHost *:80>
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / https://12.33.44.55/
ProxyPassReverse / https://12.33.44.55/
</VirtualHost>
Thanks in Advance