How can I generate a self-signed SSL certificate using OpenSSL?

openssl req -new -key {private key file} -out {output file} However, the warnings are displayed, because the browser was not able to verify the identify by validating the certificate with a known Certificate Authority (CA). As this is a self-signed certificate there is no CA and you can safely ignore the warning and proceed.

Read More