This commit is contained in:
AJ ONeal 2015-12-12 22:21:02 +00:00
parent 2f4950a983
commit d95a265530
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ the new certificates, or call `fetch` a final time.
Example:
```javascript
var server = require('https').createServer({ SNICallback: le.sniCallback });
var server = require('https').createServer({ SNICallback: le.sniCallback, cert: '...', key: '...' });
server.on('request', app);
```