I have a Tomcat 7 SSL connector tag:

<Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol"
           compression="on" noCompressionUserAgents="gozilla, traviata"
           maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
           keystoreFile="/foo/bar/baz.ks" keyAlias="frobozz"
           clientAuth="false" sslProtocol="TLS" />
(the names have been changed to protect the innocent)

When I plugged that into a Tomcat 8.5 server.xml, it took down the whole server, with numerous stack-traces in catalina.out.

So I looked again at the model SSL connector tag for JSSE in the Tomcat 8.5 server.xml,

<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
           maxThreads="150" SSLEnabled="true">
    <SSLHostConfig>
        <Certificate certificateKeystoreFile="conf/localhost-rsa.jks"
                     type="RSA" />
    </SSLHostConfig>
</Connector>

and see that the format is so different, I'm not sure where to begin. What goes where? Are parts of the old connector tag obsolete in 8.5?

--
JHHL

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

Reply via email to