SSL Configuration steps for Apache
First make sure that apache installations and SSL changes have done,
Below steps to configure SSL certificates:
Step 1 : Move to "extra" directory of apache.
Ex: cd /APACHE_HOME/conf/extra
Step 2: Generate Private Key on the Server Running Apache + mod_ssl
Ex: openssl genrsa -des3 -out
So your result will be :
Step 3: Generate a Certificate Signing Request (CSR)
Ex: openssl req -new -key
So your result will be :
Step 4: Generate a Self-Signed SSL Certificate
Ex: openssl x509 -req -days 365 -in
So your result will be :
Step 5: Generate a CA file
Ex: openssl req -new -x509 -days 365 -key in
So your result will be :
Step 6: Generate a DER file
Ex: openssl x509 -in
So your result will be :
Step 7: Removal of Passphrase (Optional if you want to remove passphrase)
Ex: openssl rsa -in
So your result will be : new.key
Now copy that “new.key” to “
Ex : cp new.key
Step 8: Finally copy
Ex : cp
cp
Now you are done with your SSL certificates
Comments
Post a Comment