浏览代码

Removed the hardcoded `--webroot` certbot argument to better support DNS challenge. Also, this option is already set in the default `letsencrypt.ini`.

Jocelyn Le Sage 5 年之前
父节点
当前提交
f539e813aa
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      backend/internal/certificate.js

+ 0 - 1
backend/internal/certificate.js

@@ -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' : '');