Skip to content
This repository has been archived by the owner on Nov 4, 2019. It is now read-only.

Commit

Permalink
Merge pull request #182 from selevit/patch-16
Browse files Browse the repository at this point in the history
Fix issue #178
  • Loading branch information
umputun committed Jan 14, 2017
2 parents 106790f + 5e69adc commit 51ed366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_local.sh
Expand Up @@ -11,7 +11,7 @@ export SSL_CERT=nginx.crt
cd "$DIR"
SSL_KEYS_DIR="etc/ssl"

if [ ! -f "$SSL_KEYS_DIR/$SSL_KEY" ] || [ -f "$SSL_KEYS_DIR/$SSL_CERT" ]; then
if [ ! -f "$SSL_KEYS_DIR/$SSL_KEY" ] || [ ! -f "$SSL_KEYS_DIR/$SSL_CERT" ]; then
openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
-subj "/C=US/ST=Test/L=Test/O=Dis/CN=localhost" \
-keyout "$SSL_KEYS_DIR/$SSL_KEY" \
Expand Down

0 comments on commit 51ed366

Please sign in to comment.