How to disable dns-01? #19

Open
opened 2020-04-27 18:33:39 +00:00 by Ghost · 0 comments

Somewhere in the @root acme lib (I've traced it that far), dns-01 challenge is getting added. I see things like skipChallengeTest but not sure how to officially disable it.

My init looks like:

greenlock.create({
    store: {
      module: __dirname + "/lib/le-sql-store",
    },
    challengeType: "http-01",
    challenges: {
      "dns-01": null,
      "http-01": {
        module: __dirname + "/lib/le-challenge-sql",
      },
    },
    staging: true,
    maintainerEmail: "user@example.com",
    packageAgent: "example-greenlock",
    packageRoot: "/tmp",
    notify: function (ev, args) {
      if ("error" === ev || "warning" === ev) {
        console.log(ev, args);
        return;
      }
      console.log(ev, args);
    },
  });
  letsEncrypt.manager.defaults({
    agreeToTerms: true,
  });
Somewhere in the @root acme lib (I've traced it that far), dns-01 challenge is getting added. I see things like `skipChallengeTest` but not sure how to officially disable it. My init looks like: ``` greenlock.create({ store: { module: __dirname + "/lib/le-sql-store", }, challengeType: "http-01", challenges: { "dns-01": null, "http-01": { module: __dirname + "/lib/le-challenge-sql", }, }, staging: true, maintainerEmail: "user@example.com", packageAgent: "example-greenlock", packageRoot: "/tmp", notify: function (ev, args) { if ("error" === ev || "warning" === ev) { console.log(ev, args); return; } console.log(ev, args); }, }); letsEncrypt.manager.defaults({ agreeToTerms: true, }); ```
Sign in to join this conversation.
No Label
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: root/greenlock.js#19
No description provided.