Create new SSL certificate for https

2003-01-21 Thread cy user
I need to create new certificate's for my apache server. I'm a little confused on how to do this. Does anyone have a good link they can tell me or anything. Thanks Rob __ Apache Interface to OpenSSL (mod_ssl) ww

Re: Create new SSL certificate for https

2003-01-21 Thread Daniel Lopez
> I need to create new certificate's for my apache server. I'm a little confused on how to do this. Does anyone have a good link they can tell me or anything. This should give you a good understanding of certificates and how to use the openssl command line tool to manage them: http://apacheworld

RE: Create new SSL certificate for https

2003-01-21 Thread Marco \"Kiko\" Carnut
Rob, > I need to create new certificate's for my apache server. I'm a > little confused on how to do this. Does anyone have a good link > they can tell me or anything. A simple and very fast way to do it for testing purposes is to use FreeICP project's free entry-level CA: https://ca.freeic

Re: Create new SSL certificate for https

2003-01-21 Thread Sasa STUPAR
use this command: openssl req -config openssl.cnf -new -out xxx.csr openssl rsa -in privkey.pem -out xxx.key openssl x509 -in xxx.csr -out xxx.cert -req -signkey xxx.key -days 365 openssl x509 -in xxx.cert -out xxx.der.crt -outform DER cy user a écrit: I need to create new certificate's for my a