From f3672687ab1f75513cc451fe25ad406f39e02194 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 8 Aug 2016 18:42:13 -0400 Subject: [PATCH] :config -> :configDir --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 79581e4..fb8611f 100644 --- a/README.md +++ b/README.md @@ -17,11 +17,11 @@ npm install --save le-store-certbot@2.x ```bash var leStore = require('le-store-certbot').create({ - configDir: require('homedir')() + '/letsencrypt/etc' // or /etc/letsencrypt or wherever -, privkeyPath: ':config/live/:hostname/privkey.pem' // -, fullchainPath: ':config/live/:hostname/fullchain.pem' // Note: both that :config and :hostname -, certPath: ':config/live/:hostname/cert.pem' // will be templated as expected by -, chainPath: ':config/live/:hostname/chain.pem' // node-letsencrypt + configDir: require('homedir')() + '/letsencrypt/etc' // or /etc/letsencrypt or wherever +, privkeyPath: ':configDir/live/:hostname/privkey.pem' // +, fullchainPath: ':configDir/live/:hostname/fullchain.pem' // Note: both that :configDir and :hostname +, certPath: ':configDir/live/:hostname/cert.pem' // will be templated as expected by +, chainPath: ':configDir/live/:hostname/chain.pem' // node-letsencrypt , workDir: require('homedir')() + '/letsencrypt/var/lib' , logsDir: require('homedir')() + '/letsencrypt/var/log'