Tomcat 55 Apache2 and SSL
Aloha @all,
I am trying to setup SSL with tomcat. SSL itself is already running and can be accessed through Apache, however, whenever I try to access ssl on tomcat, I get a 404 message screen. Now I got a feeling that this could all result of a missing connector script in the server.xml file...
I did, however, already add the following:
<Connector port="8443" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
SSLEngine="on"
SSLCertificateFile="/etc/pki/tls/certs/localhost.crt"
SSLCertificateKeyFile="/etc/pki/tls/private/localhost.key"
/>
there are no error messages in the log file pointing to the error...
could anybody give me a hint on what I am missing out on?

