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

Commit

Permalink
Fix issue #178
Browse files Browse the repository at this point in the history
  • Loading branch information
selevit committed Jan 10, 2017
1 parent 106790f commit 5e69adc
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 5e69adc

Please sign in to comment.