diff --git a/shell/ssl.sh b/shell/ssl.sh new file mode 100644 index 00000000..e703ad7d --- /dev/null +++ b/shell/ssl.sh @@ -0,0 +1,3 @@ +openssl genrsa -out privatekey.pem 1024 +openssl req -new -key privatekey.pem -out certrequest.csr +openssl x509 -req -in certrequest.csr -signkey privatekey.pem -out certificate.pem \ No newline at end of file