Start nginx after letsencrypt configuration

This commit is contained in:
Pirate Praveen 2020-04-03 17:59:00 +05:30
parent f20934b035
commit 95fd5c6f06

View file

@ -228,6 +228,10 @@ case "$1" in
echo "Stop your webserver and try running letsencrypt manually..."
echo "$LETSENCRYPT_CMD"
}
if command -v nginx > /dev/null; then
echo "Starting nginx (letsencrypt configuration completed) ..."
invoke-rc.d nginx start
fi
fi
fi
else