These are the actual steps I went through to generate the cert and key
for my Apache 2 web server on the Mac. I then start Apache.
openssl genrsa -des3 -rand file1:file2:file3:file4:file5 -out server.key
1024
openssl rsa -in server.key -out server.pem
openssl req -new -key server.key -out server.csr
openssl x509 -req -days 3650 -in server.csr -signkey server.key -out
server.crt
sudo mkdir /usr/local/apache2/conf/ssl.crt
sudo mkdir /usr/local/apache2/conf/ssl.key
sudo cp server.crt /…
Continue
Posted on June 25, 2009 at 7:44pm —
Comment Wall (2 comments)
You need to be a member of The Jolly Penguin to add comments!
Join this Ning Network
Cheers
Ceri