[__letsencrypt_acmetiny] fix spellcheck warnings (bugs!)

This commit is contained in:
evilham 2020-03-23 12:35:54 +01:00
parent 1bd19d6dee
commit 9fdc9082f4
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# Arguments
ACME_DOMAIN="$(cat $__object/parameter/acme_domain || true)"
ACME_DOMAIN="$(cat "${__object}/parameter/acme_domain" || true)"
if [ -z "${ACME_DOMAIN}" ]; then
ACME_DOMAIN="${__target_host}"
@ -158,7 +158,7 @@ server {
include snippets/acme-challenge.conf;
location / {
return 301 https://$host$request_uri;
return 301 https://\$host\$request_uri;
}
}
EOF