Yavuz Kavus wrote:
2) and i uncommented the part related to https as:
    <Connector port="8443" maxHttpHeaderSize="8192"
               maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
               enableLookups="true" disableUploadTimeout="true"
               acceptCount="100" scheme="https" secure="true"
               clientAuth="false" sslProtocol="TLS" />

3) restarted tomcat and tried https://localhost:8443/   i got  :
The connection was interrupted
The connection to localhost:8443 was interrupted while the page was loading.


when i try http://localhost:8443/ (http instead of https), everything is ok.

i wonder where i made mistake(s).
can any body see where is my mistake(s)?

thanks for any help.


You need to include the keystore path in the SSL confiiguration like so:
   <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" keystoreFile="./conf/keystore"/>

--
Regards

Gabe Wong
NGASI AppServer Manager
Application server installation and configuration AUTOMATION
http://www.ngasi.com


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to