How to Generate Self-signed SSL Certificate from GoDaddy for your web server
1, Login to your server and issue these commands:
openssl genrsa -des3 -out innovita.key 2048
openssl req -new -key innovita.key -out innovita.csr
2, Upload csr file to GOoDaddy website to generate certificate files. Download the zip file to your server and unzip it.
3, use this command to remove password so apache will start automatically without asking for password.
openssl rsa -in innovita.key -out innovita.key.insecure
innovita.key innovita.key_w_password
cp innovita.key.insecure innovita.key
4, Configure ssl.conf file, add these lines:
SSLCertificateFile /home/innovita/ssl/innovitainc.com.crt
SSLCertificateKeyFile /home/innovita/ssl/innovita.key
SSLCertificateChainFile /home/innovita/ssl/gd_bundle.crt
5, Restart Apache
Apachectl restart
