Hassan Schroeder-2 wrote:
> 
> On Tue, Dec 16, 2008 at 9:59 AM, TiredMan <soulscaven...@gmail.com> wrote:
> 
>> "The page cannot be found" message in IE when i go to
>> http://webdomain.com
> 
> You would be better off using Firefox with the Web Developer and
> Firebug plugins to get better error messages, but...
> 
>> As for httpd logs, i not sure they are configured, because i just have
>> next
>> files in logs dir:
> 
>> Should i enable it somehow?
> 
> ? Logs appear to be "enabled" -- what do you find in them?
> 
> And again, does your configuration check pass?
> 
> -- 
> Hassan Schroeder ------------------------ hassan.schroe...@gmail.com
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
> 
> 
> 

Hassan, i just want to say THANK YOU a lot your invaluable help! I done with
it and my finish config for http so:
<VirtualHost *:80>
        ProxyPreserveHost On
        ProxyPass / http://localdomain.com:3001/
        ProxyPassReverse / http://localdomain.com:3001/
        ServerName webdomain.com
</VirtualHost *:80>

IT JUST WORKS.

and another virt.host for reverse proxy with SSL:
<VirtualHost *:443>
                SSLEngine on
                SSLCipherSuite
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
                SSLCertificateFile conf/ssl/mycert.cert
                SSLCertificateKeyFile conf/ssl/mykey.key
                SSLProxyEngine On
                ProxyPreserveHost On
        ProxyPass / https://localdomain.com/
        ProxyPassReverse / https://localdomain.com/
        ServerName webdomain.com
</VirtualHost>

Thank you a million and I wish you good luck in all your deeds. 
-- 
View this message in context: 
http://www.nabble.com/Aid%3A-Tomcat-Apache-redirect-%28or-forwarding%29.-tp21031384p21088154.html
Sent from the Tomcat - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to