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,26 +115,30 @@ var lex = require('letsencrypt-express').create({
//, store: require('le-store-certbot').create({})
//, sni: require('le-sni-auto').create({})
, approveDomains: function (opts, certs, cb) {
// This is where you check your database and associated
// email addresses with domains and agreements and such
// The domains being approved for the first time are listed in opts.domains
// Certs being renewed are listed in certs.altnames
if (certs) {
opts.domains = certs.altnames;
}
else {
opts.email = 'john.doe@example.com';
opts.agreeTos = true;
}
cb(null, { options: opts, certs: certs });
}
, 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
// The domains being approved for the first time are listed in opts.domains
// Certs being renewed are listed in certs.altnames
if (certs) {
opts.domains = certs.altnames;
}
else {
opts.email = 'john.doe@example.com';
opts.agreeTos = true;
}
cb(null, { options: opts, certs: certs });
}
```
```javascript
// handles acme-challenge and redirects to https