where to put SSL certificate Apache?

After your Certificate is issued by the Certificate Authority, you’re ready to begin installation on your Apache server. Follow these steps:

Step 1: Upload Certificate Files Onto Server
Step 2: Locate Apache Configuration File
Step 3: Configure Virtual Host Section
Step 4: Enabling OCSP Stapling
Step 5: Save & Restart
 

dedipath

New member
Following is an an example of SSL virtualhost which should be helpful for you.

<VirtualHost 192.168.0.1:443>
DocumentRoot /var/www/website
ServerName www.domain.com
SSLEngine on
SSLCertificateFile /etc/ssl/crt/primary.crt
SSLCertificateKeyFile /etc/ssl/crt/private.key
SSLCertificateChainFile /etc/ssl/crt/intermediate.crt
</VirtualHost>

Certificate should be copied at /etc/ssl/crt/primary.crt
Key should be placed at /etc/ssl/crt/private.key
 
Top