From cfe336c37cc7fa753559986299d3fd8a31b1a20f Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Sun, 13 Dec 2015 11:54:17 -0800 Subject: [PATCH] fix path to acme key --- src/paths.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paths.js b/src/paths.js index 4d74e21a9..49b7a7e3e 100644 --- a/src/paths.js +++ b/src/paths.js @@ -31,5 +31,5 @@ exports = module.exports = { UPDATE_CHECKER_FILE: path.join(config.baseDir(), 'data/box/updatechecker.json'), ACME_CHALLENGES_DIR: path.join(config.baseDir(), 'data/acme'), - ACME_ACCOUNT_KEY_FILE: path.join(config.baseDir(), 'data/box/acme.key') + ACME_ACCOUNT_KEY_FILE: path.join(config.baseDir(), 'data/box/acme/acme.key') };