From 1826e3c199e3759cd0ab5176a054ce72cca16dd6 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 12 Aug 2016 00:17:47 -0600 Subject: [PATCH 1/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3e375e4..c74ea7d 100644 --- a/README.md +++ b/README.md @@ -57,3 +57,4 @@ For ACME Challenge: For node-letsencrypt internals: * `getOptions()` returns the internal defaults merged with the user-supplied options +* `loopback(defaults, domain, key, value, done)` test, by external means, that the ACME server's challenge server will succeed From 3579c4ccf55d90317d94f90272bb3561550cd3da Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Wed, 17 Aug 2016 23:00:23 -0600 Subject: [PATCH 2/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c74ea7d..f43425f 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ | [letsencrypt](https://github.com/Daplie/node-letsencrypt) (library) | [letsencrypt-cli](https://github.com/Daplie/letsencrypt-cli) | [letsencrypt-express](https://github.com/Daplie/letsencrypt-express) +| [letsencrypt-cluster](https://github.com/Daplie/letsencrypt-cluster) | [letsencrypt-koa](https://github.com/Daplie/letsencrypt-koa) | [letsencrypt-hapi](https://github.com/Daplie/letsencrypt-hapi) | From 9abce7a852beeefb9e13db9f095fe34d9ee8036a Mon Sep 17 00:00:00 2001 From: Erwin Hessing Date: Wed, 31 Aug 2016 11:44:51 +1200 Subject: [PATCH 3/3] bugfix Stringify keyAuthorization prior to saving --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 3a6320b..124a41f 100644 --- a/index.js +++ b/index.js @@ -40,6 +40,7 @@ Challenge.create = function (options) { // Challenge.set = function (args, domain, challengePath, keyAuthorization, done) { var mkdirp = require('mkdirp'); + keyAuthorization = String(keyAuthorization); mkdirp(args.webrootPath, function (err) { if (err) {