> From: DANA HEATH [mailto:djhe...@pacbell.net] > 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: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org