Jeff "Top-Posting is not Bad because you have to scroll to the bottom to see 
what you're after" Haferman wrote:

>
>
> Listen 80
> ProxyRequests Off
> ProxyPreserveHost on
><VirtualHost *:80>
>
>     ServerName my.webserver.com
>     ProxyPass / http://my.webserver.com:8080/
>     ProxyPassReverse / http://localhost:8080/
>   
></VirtualHost>
><proxy http://my.webserver.com:8080/>
>     AllowOverride None
>     Order Deny,Allow
>     Allow from all
></proxy>
>
> Listen 443
><VirtualHost *:443>
>
>     SSLEngine on
>     SSLProxyEngine on
>     SSLCertificateFile /path/to/server.crt
>     SSLCertificateKeyFile /path/to/server.key
>     ServerName my.webserver.com
>     ProxyPass / https://my.webserver.com:8443/
>     ProxyPassReverse / https://localhost:8443/
>
></VirtualHost>
><proxy https://my.webserver.com:8443/>
>     AllowOverride None
>     Order Deny,Allow
>     Allow from all
></proxy>
>

Problem solved. The config listed is good. It was getting borked by some 
garbage in an included extra/httpd-ssl.conf file. Most helpful resource I found 
was the apache mod_proxy documentation...I thought it might have been a tomcat 
connector problem but not so... 


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

Reply via email to