Merge pull request #559 from jlesage/remove-webroot-certbot-arg

Removed the hardcoded `--webroot` certbot argument to better support DNS challenge
This commit is contained in:
jc21 2020-08-25 08:44:00 +10:00 committed by GitHub
commit bf8beb50b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -733,7 +733,6 @@ const internalCertificate = {
'--agree-tos ' +
'--email "' + certificate.meta.letsencrypt_email + '" ' +
'--preferred-challenges "dns,http" ' +
'--webroot ' +
'--domains "' + certificate.domain_names.join(',') + '" ' +
(le_staging ? '--staging' : '');