Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

oneuptime-acme-http-01

hackerbayadmin52MIT4.0.69

HTTP Authentication (In-Memory) for Let's Encrypt for Node.js - ACME http-01 challenges for OneUptime

standalone, memory, http-01, letsencrypt, acme, greenlock, oneuptime

readme

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
const Greenlock = require('greenlock');

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