2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-22 22:58:31 +00:00

prepend wildcard character to domain

This commit is contained in:
Saurabh 2018-06-29 13:57:11 +05:30
parent cb2c51684b
commit b81904b8c8

View File

@ -132,7 +132,7 @@ def setup_wildcard_ssl(domain, email, bench_path):
try:
exec_cmd("{path} certonly --manual --preferred-challenges=dns {email_param} \
--server https://acme-v02.api.letsencrypt.org/directory \
--agree-tos -d {domain}".format(path=get_certbot_path(), domain=domain,
--agree-tos -d *.{domain}".format(path=get_certbot_path(), domain=domain,
email_param=email_param))
except CommandFailedError: