Hi, i have a apache to configure a domain with proxy reverse, but this site is under load balance and out of my network, and every time i try to configure the apache to proxy reverse with this target my page is out. Someone can help me with this ? My configuration in apache is:
<VirtualHost *:80>
ServerAdmin root@localhost
ProxyRequests off
ProxyPreserveHost On
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyPass /
http://www.xxx.xx.xxx.xx/test
ProxyPassReverse /
http://www.xxx.xx.xxx.xx/test
<Location />
Order allow,deny
Allow from all
</Location>
ServerName
www.xxx.xx.xxx.xx
ErrorLog logs/www.xxx.xx.xxx.xx-error_log
CustomLog logs/www.xxx.xx.xxx.xx-access_log common
</VirtualHost>