temp disable of multi-domain certificate requests
这个提交包含在:
父节点
8fb70564db
当前提交
7408db6601
@ -81,12 +81,13 @@ module.exports.create = function (deps, config, netHandler) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// We can't request certificates for wildcard domains, so filter any of those
|
// // We can't request certificates for wildcard domains, so filter any of those
|
||||||
// out of this list and put the domain that triggered this in the list if needed.
|
// // out of this list and put the domain that triggered this in the list if needed.
|
||||||
domains = (domains || []).filter(function (dom) { return dom[0] !== '*'; });
|
// domains = (domains || []).filter(function (dom) { return dom[0] !== '*'; });
|
||||||
if (domains.indexOf(opts.domain) < 0) {
|
// if (domains.indexOf(opts.domain) < 0) {
|
||||||
domains.push(opts.domain);
|
// domains.push(opts.domain);
|
||||||
}
|
// }
|
||||||
|
domains = [ opts.domain ];
|
||||||
// TODO: allow user to specify options for challenges or storage.
|
// TODO: allow user to specify options for challenges or storage.
|
||||||
|
|
||||||
Object.assign(opts, optsOverride, { domains: domains, agreeTos: true });
|
Object.assign(opts, optsOverride, { domains: domains, agreeTos: true });
|
||||||
|
正在加载...
x
在新工单中引用
屏蔽一个用户