Update README.md

This commit is contained in:
AJ ONeal 2016-08-17 09:11:10 -06:00 committed by GitHub
parent c14077c099
commit 103e4ae419
1 changed files with 21 additions and 17 deletions

View File

@ -115,7 +115,12 @@ var lex = require('letsencrypt-express').create({
//, store: require('le-store-certbot').create({})
//, sni: require('le-sni-auto').create({})
, approveDomains: function (opts, certs, cb) {
, approveDomains: approveDomains
});
```
```javascript
function approveDomains(opts, certs, cb) {
// This is where you check your database and associated
// email addresses with domains and agreements and such
@ -131,8 +136,7 @@ var lex = require('letsencrypt-express').create({
}
cb(null, { options: opts, certs: certs });
}
});
}
```