From 7aae27a0f576ff29d899ffd8a0d1aaa280904a2f Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 14 Oct 2016 13:37:53 -0600 Subject: [PATCH] note changing challengeType in approveDomains --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index caa8431..4eeb118 100644 --- a/README.md +++ b/README.md @@ -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 }); } ```