(4 votes, average: 4.75 out of 5)
Loading...
After getting your desired SSL certificate issued, you’ll need to go one step further and install the issued SSL certificate into your NGINX webserver and prevent the “Not Secure” warning. In addition, if you’re using the NGINX server, then simply go through the below steps and get your issued SSL certificate installed.
Here are some quick steps for installing an Essential SSL certificate into your NGINX webserver and displaying secure HTTPS URLs to prevent users from facing warning messages like “Not Secure”:
Firstly, you’ll need to copy all the certificate files and save them in an appropriate directory within the NGINX server. And, for better security, keep it in readable format through the root.
You’ll require to concatenate two certificates into a single file using the below-mentioned command:
cat your_domain_exmaple_name.crt Intermediate.crt >> bundle.crt
Edit virtual host file of NGINX server. And, for editing, all you have to do is copy the existing server module into the secure one and paste it into the original:
server { listen 443; ssl on; ssl_certificate /etc/ssl/your_domain_name.pem; (or bundle.crt) ssl_certificate_key /etc/ssl/your_domain_name.key; server_name your.domain.com; access_log /var/log/nginx/nginx.vhost.access.log; error_log /var/log/nginx/nginx.vhost.error.log; location / { root /home/www/public_html/your.domain.com/public/; index index.html; } }
And once you submit the code mentioned above, you’ll require to restart the server using the NGINX server:
sudo /etc/init.d/nginx restart
Congratulations! Once you complete the steps mentioned above, your SSL is installed in your NGINX webserver. Likewise, we recommend verifying it once using our SSL Checker Tool to ensure the installed Wildcard SSL certificate is working correctly.
Ensure you have the below-mentioned certificate files:
The server certificate is for your website that comes in an email sent by the certificate authority. Nonetheless, if you haven’t received an email, you’ve one more option to get your server certificate. All you require to do is download it through an SSL order from Account Dashboard.
An intermediate certificate connects the device with the server to identify who has issued an installed SSL certificate. If you have received the ZIP folder of the CA certificates, you’ll find it within that folder. Also, you can even download the CA Bundle for your SSL certificate if you haven’t received any email.
The private key is kept on your webserver. Likewise, if you’ve generated the CSR, you’ll have a private key with you. It’s recommended to keep the private key with yourself securely. Lastly, at the time of installation, you’ll also require this file.
COMODO Positive SSL – Starts at $4.99/Yr.
Buy or renew Positive SSL certificates and save up to 90% at CheapSSLweb.com. It includes 256-bit encryption, FREE site seal, unlimited re-issuance, unlimited server license, and more.