Allow certs for domains which are available

This commit is contained in:
Bob Mottram 2016-11-09 19:27:02 +00:00
parent 3da8c435e4
commit 96cfc5c40e
1 changed files with 3 additions and 0 deletions

View File

@ -485,6 +485,9 @@ function create_letsencrypt {
domain_found=1
fi
fi
if [ -f /etc/nginx/sites-available/${new_domain} ]; then
domain_found=1
fi
if [ ! $domain_found ]; then
dialog --title $"Create a new Let's Encrypt certificate" \
--msgbox $'Domain not found within /var/www' 6 40