Revision [1414]
Last edited on 2008-02-21 00:49:03 by WikiAdminAdditions:
./configure --with-apr=/usr/local/apr --with-ssl=/usr
Once you have tomcat-native library enabled, the default https connector will no longer be serving encrypted contents. Tomcat now uses openssl-style key+certificate. You need to replace the whole connector block with the following:
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
SSLEngine="on"
SSLCertificateFile="/certs/selfsign.crt"
SSLCertificateKeyFile="/certs/selfsign.pem" />
Once you have tomcat-native library enabled, the default https connector will no longer be serving encrypted contents. Tomcat now uses openssl-style key+certificate. You need to replace the whole connector block with the following:
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
SSLEngine="on"
SSLCertificateFile="/certs/selfsign.crt"
SSLCertificateKeyFile="/certs/selfsign.pem" />