oneuptime/fyipe-acme-http-01
2021-04-07 14:01:32 +01:00
..
lib add backend protocol 2021-04-02 14:25:27 +01:00
.gitignore setup and deploy fyipe-le-store and fyipe-acme-http-01 greenlock modules 2021-04-02 09:04:10 +01:00
index.js setup and deploy fyipe-le-store and fyipe-acme-http-01 greenlock modules 2021-04-02 09:04:10 +01:00
package-lock.json setup and deploy fyipe-le-store and fyipe-acme-http-01 greenlock modules 2021-04-02 09:04:10 +01:00
package.json setup and deploy fyipe-le-store and fyipe-acme-http-01 greenlock modules 2021-04-02 09:04:10 +01:00
README.md include readme 2021-04-07 14:01:32 +01:00
test.js new-project-lint 2021-04-03 13:14:17 +01:00

fyipe-acme-http-01 Package for Greenlock

This module handles acme-http-01 challenge and also the api call to Fyipe backend to persist keyAuthorization and token data from acme directory in our mongodb. The stored data will be used by Fyipe to validate all our certificate order/renewal.

Install

npm install fyipe-acme-http-01

Usage

// make sure greenlock is already installed
const Greenlock = require('greenlock');

Greenlock.create({
    challenges: {
        'http-01': {
            module: 'fyipe-acme-http-01',
        },
    },
    // ...
});