How to install certificate in Linux for nginx

openssl req -newkey rsa:2048 -nodes -keyout <domain_name> -out csr_file_name.csr Use this csr key file to create certificate from CA, and generate for nginx (if the option is not available, use Apache) Receive the certificate from CA, it would be a certfile.txt To cross check the received certificate use the following command openssl x509 -in certificate.crt […]