I've tried to follow a tutorial on self-generating a SSL Certificate. I've created a file "www.mysite.com.csr" and a file "www.mysite.com.key". However, when I restart apache, it doesn't prompt me for the passphrase, as the tutorial suggests.
I also tried to configure my virtual hosts to rewrite to https and it failed.
Do I have to make a change to the httpd config file to make my certificate work?
Here is my virtual host conf:
<IfDefine SSL> <VirtualHost *:443> ServerName mysite.com ServerAlias www.mysite.com DocumentRoot /home/project/ SSLEngine on SSLCertificateFile /usr/lib/ssl/www.mysite.com.crt SSLCertificateKeyFile /usr/lib/ssl/www.msyite.com.key #SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown </VirtualHost> </IfDefine>