How to enable SSL certificate on Nginx
First of all you have to check if your webserver version supports ssl. If ssl is not enabled in your server read more here If SSL module is installed in your nginx instance then you have more few simple steps to follow. Generate Certificate Signing Request (CSR) Generate private key
1 2 3 |
Login into the server by ssh openssl genrsa -out www.domain.com.key 2048 |
Generate the CSR
1 |
openssl req -new -key www.domain.com.key -out www.domain.com.csr |
[…]