Update README.md

This commit is contained in:
AJ ONeal 2016-08-18 00:27:47 -06:00 committed by GitHub
parent 505d4b02ce
commit 412b0a6bf7
1 changed files with 3 additions and 3 deletions

View File

@ -111,9 +111,9 @@ var lex = require('letsencrypt-express').create({
// If you wish to replace the default plugins, you may do so here
//
//, challenges: { 'http-01:' require('le-challenge-fs').create({}) }
//, store: require('le-store-certbot').create({})
//, sni: require('le-sni-auto').create({})
, challenges: { 'http-01:' require('le-challenge-fs').create({ webrootPath: '/tmp/acme-challenges' }) }
, store: require('le-store-certbot').create({ webrootPath: '/tmp/acme-challenges' })
, sni: require('le-sni-auto').create({})
, approveDomains: approveDomains
});