note changing challengeType in approveDomains

This commit is contained in:
AJ ONeal 2016-10-14 13:37:53 -06:00
parent d69918b386
commit 7aae27a0f5
1 changed files with 4 additions and 0 deletions

View File

@ -147,6 +147,10 @@ function approveDomains(opts, certs, cb) {
opts.agreeTos = true;
}
// NOTE: you can also change other options such as `challengeType` and `challenge`
// opts.challengeType = 'http-01';
// opts.challenge = require('le-challenge-fs').create({});
cb(null, { options: opts, certs: certs });
}
```