Dear Members,
I need to know the procedures to install a *.cer file into the format we using in stunnel.conf.actually lately we renewed a certificate from Verisign and they send a file which we save as test.cer .now I need to put this file into my format in stunnel.conf as follows
key = /pbx_u01/apps/tomcat/current/conf/mnet-priv_nbk.pfx.pem
cert = /pbx_u01/apps/tomcat/current/conf/mnet-priv_nbk.pfx.x509
since we are using tomcat as application server which is using stunnel as https port forwarder so advice the steps would be thanks at the earliest.
Regards
Nadeem
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On Thu, Jun 23, 2005 at 03:01:50PM +0300, Nadeem Mohiudeen wrote:
Dear Members,
I need to know the procedures to install a *.cer
file into the format we using in stunnel.conf.actually lately we renewed a certificate from Verisign and they send a file which we save as test.cer .now I need to put this file into my format in stunnel.conf as follows
key = /pbx_u01/apps/tomcat/current/conf/mnet-priv_nbk.pfx.pem
cert = /pbx_u01/apps/tomcat/current/conf/mnet-priv_nbk.pfx.x509
since we are using tomcat as application server which is using stunnel as https port forwarder so advice the steps would be thanks at the earliest.
Cert files must always be in PEM format, you need to convert your new test.cer to PEM format. What do you get with the command:
% file test.cer
consider using openssl(1) for the conversion. The exact command depends on the type of the file you have.