using openssl to create a self sign certificate
The following command generate a self signed certificate for 365 days.
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 -nodes
The following command generate a self signed certificate for 365 days.
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 -nodes
Comments