Details
-
Task
-
Status: Resolved
-
Minor
-
Resolution: Not A Problem
-
9.1.0
-
None
Description
I added SSL to my server.xml but when I connect to the Secure site it bypasses login to the website which it doesn't do when connecting through port 80. What could be causing the bypass? This is the connector and how I added it:
<Connector port="80" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="443" maxParameterCount="1000" xpoweredBy="false" server="Apache TomEE" />
<Connector port="443" protocol="org.apache.coyote.http11.Http11NioProtocol" connectionTimeout="20000"
maxThreads="150"
SSLEnabled="true"
scheme="https"
secure="true"
clientAuth="want"
sslProtocol="TLS"
maxHttpHeaderSize="65536">
<SSLHostConfig>
<Certificate certificateKeystoreFile="/usr/share/tomcat/cert/tomcat.keystore"
certificateKeystorePassword="xxxxxxxxx"
certificateKeystoreType="PKCS12"
type="RSA" />
</SSLHostConfig>
</Connector>