v2.6.5: don't allow IP addresses

This commit is contained in:
AJ ONeal 2018-12-22 07:20:58 -07:00
부모 fcb3b659cd
커밋 911d05bb24
2개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -393,6 +393,9 @@ Greenlock.create = function (gl) {
if (!gl.approvedDomains.length) { if (!gl.approvedDomains.length) {
throw new Error("le-sni-auto is not properly configured. Missing approveDomains(domain, certs, callback)"); throw new Error("le-sni-auto is not properly configured. Missing approveDomains(domain, certs, callback)");
} }
if (!/[a-z]/i.test(lexOpts.domain)) {
throw new Error("le-sni-auto does not allow IP addresses by default");
}
if (!Array.isArray(gl.approvedDomains)) { if (!Array.isArray(gl.approvedDomains)) {
// The acme-v2 package uses pre-flight test challenges to // The acme-v2 package uses pre-flight test challenges to

파일 보기

@ -1,6 +1,6 @@
{ {
"name": "greenlock", "name": "greenlock",
"version": "2.6.4", "version": "2.6.5",
"description": "Let's Encrypt for node.js on npm", "description": "Let's Encrypt for node.js on npm",
"main": "index.js", "main": "index.js",
"files": [ "files": [