:config -> :configDir
This commit is contained in:
parent
448b8492c0
commit
f3672687ab
10
README.md
10
README.md
|
@ -17,11 +17,11 @@ npm install --save le-store-certbot@2.x
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
var leStore = require('le-store-certbot').create({
|
var leStore = require('le-store-certbot').create({
|
||||||
configDir: require('homedir')() + '/letsencrypt/etc' // or /etc/letsencrypt or wherever
|
configDir: require('homedir')() + '/letsencrypt/etc' // or /etc/letsencrypt or wherever
|
||||||
, privkeyPath: ':config/live/:hostname/privkey.pem' //
|
, privkeyPath: ':configDir/live/:hostname/privkey.pem' //
|
||||||
, fullchainPath: ':config/live/:hostname/fullchain.pem' // Note: both that :config and :hostname
|
, fullchainPath: ':configDir/live/:hostname/fullchain.pem' // Note: both that :configDir and :hostname
|
||||||
, certPath: ':config/live/:hostname/cert.pem' // will be templated as expected by
|
, certPath: ':configDir/live/:hostname/cert.pem' // will be templated as expected by
|
||||||
, chainPath: ':config/live/:hostname/chain.pem' // node-letsencrypt
|
, chainPath: ':configDir/live/:hostname/chain.pem' // node-letsencrypt
|
||||||
|
|
||||||
, workDir: require('homedir')() + '/letsencrypt/var/lib'
|
, workDir: require('homedir')() + '/letsencrypt/var/lib'
|
||||||
, logsDir: require('homedir')() + '/letsencrypt/var/log'
|
, logsDir: require('homedir')() + '/letsencrypt/var/log'
|
||||||
|
|
Loading…
Reference in New Issue