Re: Tomcat APR protocol SSL certificate information.

2015-12-16 Thread Mark Thomas
ctor. Its >> similar to a keystore >> >> >> Enviado de Samsung Mobile >> >> >> >> Mensaje original >> De: Nithesh Kb <nitheshk...@gmail.com> >> Fecha: 15/12/2015 16:21 (GMT+01:00) >> Para: Tomcat Users List <

Re: Tomcat APR protocol SSL certificate information.

2015-12-16 Thread Nithesh Kb
on the conector. Its > similar to a keystore > > > Enviado de Samsung Mobile > > > > Mensaje original > De: Nithesh Kb <nitheshk...@gmail.com> > Fecha: 15/12/2015 16:21 (GMT+01:00) > Para: Tomcat Users List <users@tomcat.apache.org> &

Tomcat APR protocol SSL certificate information.

2015-12-15 Thread Nithesh Kb
HI, I have build APR libraries Openssl and tc-native also i have created openssl libraries. both HTTP and HTTPS is working fine. *openssl genrsa -des3 -out server.key 2048 * *openssl req -new -key server.key -out server.csr* *cp server.key server.key.org * *openssl rsa -in

Re: Tomcat APR protocol SSL certificate information.

2015-12-15 Thread David Newman
When you use APR the SSL implementation is coming from openssl instead of java. openssl has no use for java keystore files. So it becomes more like an apache httpd config with separate files for keys and certificates. On Tue, Dec 15, 2015 at 5:12 AM, Nithesh Kb wrote: >

Re: Tomcat APR protocol SSL certificate information.

2015-12-15 Thread Garcia Aparici, Carlos
; Asunto: Re: Tomcat APR protocol SSL certificate information. *Thanks David,Thomas.* If my understanding is not wrong. Till tomcat version 8, we need to provide cert and key separately for openssl ssl APR, like *(SSLCertificateFile="/aa/server.crt"SSLCertificateKeyFile="/aa/server.key

Re: Tomcat APR protocol SSL certificate information.

2015-12-15 Thread Mark Thomas
On 15/12/2015 15:07, David Newman wrote: > When you use APR the SSL implementation is coming from openssl instead of > java. openssl has no use for java keystore files. So it becomes more like > an apache httpd config with separate files for keys and certificates. True, but as of Tomcat 9 (and

Re: Tomcat APR protocol SSL certificate information.

2015-12-15 Thread Nithesh Kb
*Thanks David,Thomas.* If my understanding is not wrong. Till tomcat version 8, we need to provide cert and key separately for openssl ssl APR, like *(SSLCertificateFile="/aa/server.crt"SSLCertificateKeyFile="/aa/server.key")* But tomcat 9 we can use keystore to store cert and key and configure it