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?

[927 byte] By [paul@cumonian.coma] at [2007-11-27 10:59:02]
# 1

it looks like yr browser cannot find a specific page, which could be caused by various different kind of problems...

what was the URL u used to access Tomcat? make sure u use http://localhost:8443 instead of http://localhost:8080

if that's not the problem, make sure your certificate key are visible to Tomcat...

if yr Tomcat is running on a different computer to your client computer, make sure the 8443 port on the server is not blocked...

hope this help..

JWKC-5ivea at 2007-7-29 12:20:20 > top of Java-index,Security,Java Secure Socket Extension (JSSE)...