2
0
镜像自地址 https://git.coolaj86.com/coolaj86/acme-http-01-webroot.js.git 已同步 2025-05-11 11:46:32 +00:00

add comment

这个提交包含在:
AJ ONeal 2019-07-23 22:47:36 -06:00
父节点 ed309b29a4
当前提交 d81be5b1f6

查看文件

@ -14,6 +14,12 @@ module.exports.create = function(config) {
throw Error('listing zones not implemented');
},
set: function(data) {
var ch = data.challenge;
if (!ch.dnsZone) {
// zones() is not implemented for http-01 challenges,
// but it is almost always implemented for dns-01 challenges
throw new Error('No matching zone for ' + ch.dnsHost);
}
// console.info('Add TXT', data);
throw Error('setting TXT not implemented');
},