Chuck,

Indeed the proxy is forwarding all requests to 8080... I'll get the proxy 
changed and add the connector as you suggest. Thanks,

-Dana




________________________________
From: "Caldarale, Charles R" <[email protected]>
To: Tomcat Users List <[email protected]>
Sent: Fri, August 13, 2010 1:05:06 PM
Subject: RE: Proxy Configuration + SSL

> From: DANA HEATH [mailto:[email protected]]
> Subject: Proxy Configuration + SSL
> 
> web-server's server.xml connector snippet:
>   <Connector port="8080" protocol="HTTP/1.1"
>              connectionTimeout="20000" proxyName="web01.m.com"
>              proxyPort="80" redirectPort="443" />
> 
> The proxy is running on ports 80 / 443.

So what happens to requests received on 443?  Does the proxy forward those to 
8080 as well?

You might try configuring another <Connector> on 8443, and have the proxy 
forward 443 to that (after doing the SSL decryption).  The additional 
<Connector> would look like this:

    <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="false"
              maxThreads="150" scheme="https" secure="true"
              clientAuth="false" proxyPort="443" />

Note the SSLEnabled set to false along with the lack of any sslProtocol setting.

- Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY 
MATERIAL and is thus for use only by the intended recipient. If you received 
this in error, please contact the sender and delete the e-mail and its 
attachments from all computers.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to