systemctl status nginx
- Online
- Command Line
From a browser search [ Generate csr from online ] we can see some online csr generated website. Then choose any trusted website and generate csr with private key.
Access any link and filup there form as your domain information. Then click generate button and download or copy paste csr & key file.
This way we need to access that server terminal and run a single line command for generate private key and csr.
mkdir -p /etc/nginx/ssl/
cd /etc/nginx/ssl/
openssl req -new -newkey rsa:2048 -nodes -keyout exampledomain.com.key -out exampledomain.com.csr
Common Name(CN): CN is FQDN, www.paulco.xyz, cloud.paulco.xyz.
Organization: The full legal name of your organization.
Organization Unit (OU): Your department such as IT, Account, HR, etc.
City or Locality: Where your organization is legally incorporated.
State or Province: Where your organization is legally incorporated.
Country: Two uppercase letters only Your Country Code: BD,US, etc.
ls -ln
exampledomain.com.key exampledomain.com.csr
Create a backup the .key file as it will be required later when installing your SSL certificate in Nginx.
-
TrustedRoot.crt
-
DigiCertCA.crt
-
Yourdomain.crt
sudo find nginx.conf
nano /etc/nginx/sites-available/default
server {
listen 443 ssl;
listen [::]:443;
ssl on;
server_name yourdomain.com;
ssl_certificate /etc/nginx/ssl/certificate.crt; #(or bundle.crt, .pem).
ssl_certificate_key /etc/nginx/ssl/your_domain_name.key;
access_log /var/log/nginx/nginx.vhost.access.log;
error_log /var/log/nginx/nginx.vhost.error.log;
location / {
root /var/www/html;
index index.html;
}
}
nginx -t
nginx -s reload
OR
systemctl restart nginx