mirror of
https://github.com/therootcompany/acme.js
synced 2025-04-05 15:20:52 +00:00
v1.5.2: fix dns-01 wildcard bug
This commit is contained in:
parent
b41c2e8db9
commit
1af2fb2958
3
node.js
3
node.js
@ -46,7 +46,8 @@ ACME.challengeTests = {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
, 'dns-01': function (me, auth) {
|
, 'dns-01': function (me, auth) {
|
||||||
var hostname = ACME.challengePrefixes['dns-01'] + '.' + auth.hostname;
|
// remove leading *. on wildcard domains
|
||||||
|
var hostname = ACME.challengePrefixes['dns-01'] + '.' + auth.hostname.replace(/^\*\./, '');
|
||||||
return me._dig({
|
return me._dig({
|
||||||
type: 'TXT'
|
type: 'TXT'
|
||||||
, name: hostname
|
, name: hostname
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "acme-v2",
|
"name": "acme-v2",
|
||||||
"version": "1.5.1",
|
"version": "1.5.2",
|
||||||
"description": "Free SSL. A framework for building Let's Encrypt v2 clients, and other ACME v2 (draft 11) clients. Successor to le-acme-core.js",
|
"description": "Free SSL. A framework for building Let's Encrypt v2 clients, and other ACME v2 (draft 11) clients. Successor to le-acme-core.js",
|
||||||
"homepage": "https://git.coolaj86.com/coolaj86/acme-v2.js",
|
"homepage": "https://git.coolaj86.com/coolaj86/acme-v2.js",
|
||||||
"main": "node.js",
|
"main": "node.js",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user