From 13fb44f599cf3e183768783c74f38a005a520525 Mon Sep 17 00:00:00 2001 From: Konstantin Gimpel <22429622+gitpel@users.noreply.github.com> Date: Sun, 27 May 2018 12:39:12 +0300 Subject: [PATCH] Update letsencrypt-microtik.sh Support for Wildcard Let's Encrypt Certificates --- letsencrypt-microtik.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/letsencrypt-microtik.sh b/letsencrypt-microtik.sh index 06c5269..a654821 100644 --- a/letsencrypt-microtik.sh +++ b/letsencrypt-microtik.sh @@ -41,6 +41,8 @@ if [ ! -f $CERTIFICATE ] && [ ! -f $KEY ]; then echo -e "Please use CertBot Let'sEncrypt:" echo "============================" echo "certbot certonly --preferred-challenges=dns --manual -d $DOMAIN --manual-public-ip-logging-ok" + echo "or (for wildcard certificate):" + echo "certbot certonly --preferred-challenges=dns --manual -d *.$DOMAIN --manual-public-ip-logging-ok --server https://acme-v02.api.letsencrypt.org/directory" echo "===========================" echo -e "and follow instructions from CertBot\n" exit 1