I am having a website which is being served
on my LAN as http://internal1.mydomain.com
the vhost configuration for this is
<VirtualHost *:80>
ServerAdmin webmas...@localhost
ServerName internal1.mydomain.com
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPreserveHost On
ProxyPass / http://localhost:9090/
ProxyPassReverse / http://localhost:9090/
</VirtualHost>
it is working very fine on LAN. I am able to use my application completely.
Our IT department has given me a domain name www.yourdomain.com.
How do I convert the requests coming to www.yourdomain.com to be served by
vhost
on our LAN.Which has the above configuration.