Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #651 from grantgeorge/no-password-ssl-certs
Browse files Browse the repository at this point in the history
do not use aes when creating ssl certs to prevent password requirement
  • Loading branch information
lirantal committed Jul 15, 2015
2 parents 855a399 + bf777d9 commit 32c12bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generate-ssl-certs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi

echo "Generating self-signed certificates..."
mkdir -p ./config/sslcerts
openssl genrsa -out ./config/sslcerts/key.pem -aes256 1024
openssl genrsa -out ./config/sslcerts/key.pem 1024
openssl req -new -key ./config/sslcerts/key.pem -out ./config/sslcerts/csr.pem
openssl x509 -req -days 9999 -in ./config/sslcerts/csr.pem -signkey ./config/sslcerts/key.pem -out ./config/sslcerts/cert.pem
rm ./config/sslcerts/csr.pem
Expand Down

0 comments on commit 32c12bb

Please sign in to comment.