oneuptime/AcmeHttp
2022-04-20 21:24:10 +01:00
..
lib fix: duplicate-imports 2022-04-20 17:43:19 +02:00
.gitignore fix 2022-04-10 22:54:23 +01:00
index.ts fix 2022-04-19 20:11:44 +01:00
package-lock.json fix 2022-04-10 22:54:23 +01:00
package.json fix 2022-04-10 22:54:23 +01:00
README.md fix 2022-04-10 22:54:23 +01:00
test.ts fix: duplicate-imports 2022-04-20 17:43:19 +02:00
tsconfig.json fix 2022-04-10 22:54:23 +01:00

oneuptime-acme-http-01 Package for Greenlock

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

Install

npm install oneuptime-acme-http-01

Usage

// make sure greenlock is already installed
import Greenlock from 'greenlock'

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