Let's Encrypt Skip Challenge Verification added to server console LE command, #3296

Ylian Saint-Hilaire committed Nov 28, 2021 at 20:54 UTC a2ce9b85733c47443b1037f44ba1cbba41861795
1 file changed +2 -1
letsencrypt.js
+2 -1
@@ -227,7 +227,8 @@ module.exports.CreateLetsEncrypt = function (parent) {
227 challenges: obj.challenges,
228 production: obj.runAsProduction,
229 webServer: obj.redirWebServerHooked,
230 - certPath: obj.certPath
230 + certPath: obj.certPath,
231 + skipChallengeVerification: (obj.parent.config.letsencrypt.skipchallengeverification == true)
232 };
233 if (obj.configErr) { r.error = "WARNING: " + obj.configErr; }
234 if (obj.certExpire) { r.cert = 'Present'; r.daysLeft = Math.floor((obj.certExpire - new Date()) / 86400000); } else { r.cert = 'None'; }