I want to know if the Webapp connector can support SSL protocol well.
I use Solaris8+Apache1.3.27+Webapp+Tomcat4.1.24.
I compiled Apache for SSL and I don't know if the figure below is right:
Broswer <==https==> Apache(webapp) <==http==> Tomcat
I found there are 2 options(scheme, secure) at Webapp document.
Do I need to add this 2 options and config webapp like below at the
server.xml file ?
<Connector className="org.apache.catalina.connector.warp.WarpConnector"
port="8008" minProcessors="5" maxProcessors="75"
enableLookups="true"
acceptCount="10" debug="0">
scheme="https" secure="true"/>
<!-- Replace "localhost" with what your Apache "ServerName" is set to
-->
<Engine className="org.apache.catalina.connector.warp.WarpEngine"
name="Apache" debug="0" appBase="webapps">
Rai.