From 9608acc8c70cb3e7d75ba8a1c0e70ed68f6cd2aa Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 23 Sep 2013 18:01:16 +0300 Subject: [PATCH] feature(ssl) rsa: 1024 -> 2048 --- shell/ssl.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/ssl.sh b/shell/ssl.sh index 3f02e9e8..a8b8b45d 100644 --- a/shell/ssl.sh +++ b/shell/ssl.sh @@ -1,4 +1,4 @@ #!/bin/sh -openssl genrsa -out privatekey.pem 1024 +openssl genrsa -out privatekey.pem 2048 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 +openssl x509 -req -in certrequest.csr -signkey privatekey.pem -out certificate.pem