You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by James Godrej <ja...@yahoo.in> on 2010/07/15 16:18:39 UTC

how to serve a website hidden to internet

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 webmaster@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.