View source | Discuss this page | Page history | Printable version   
Toolbox
Main Page
Upload file
What links here
Recent changes
Help

PDF Books
Add page
Show collection (0 pages)
Collections help

Search

How To Configure SSL For Windows

Contents

Download Installer

Config3bSSL.jpg


Create Certificate Files

OpenSSL> genrsa -des3 -out tomcatkey.pem 2048

OpenSSL> req -config openssl.cnf -new -x509 -keyout tomcatkey.pem -out tomcatcert.pem -days 1095

ConfigSSL.jpg


Copy Certificate Files to Tomcat folder

Config2bSSL.jpg


Activate HTTPS 8443 Port

<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="C:\Tomcat 5.5\tomcatcert.pem"
           SSLCertificateKeyFile="C:\Tomcat 5.5\tomcatkey.pem"
           SSLPassword="mypassword"
/>

Openbravo https.jpg

Retrieved from "http://wiki.openbravo.com/wiki/How_To_Configure_SSL_For_Windows"

This page has been accessed 25,039 times. This page was last modified on 12 May 2009, at 15:15. Content is available under Creative Commons Attribution-ShareAlike 2.5 Spain License.