From 22db053e6c1a0bd72644d21940a6a1a131f9d930 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 18 Aug 2016 12:58:40 -0600 Subject: [PATCH] fix issue #77 don't show replacing le-sni-auto in example --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4389722..1350506 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,10 @@ var lex = require('letsencrypt-express').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({}) + +// You probably wouldn't need to replace the default sni handler +// See https://github.com/Daplie/le-sni-auto if you think you do +//, sni: require('le-sni-auto').create({}) , approveDomains: approveDomains });