Files
oneuptime/fyipe-gl-manager
Nawaz Dhandala 88b234f903 change authors
2022-01-24 19:50:37 +00:00
..
2021-11-28 10:11:36 +01:00
2022-01-24 19:50:37 +00:00
2021-05-05 10:02:47 +01:00

fyipe-gl-manager

Manages SSL Certificate issuance and renewal for Greenlock on Fyipe platform.

Saves global and per-site config to a local File Sytem (current).

Install

npm install --save fyipe-gl-manager

Usage

Initialize the Manager

Greenlock.create({
    ...
    manager: "fyipe-gl-manager",
    configDir: "./greenlock.d",
    packageRoot: __dirname
    ...
});

Site Management

By "site" we mean a primary domain and, optionally, secondary domains, to be listed on an ssl certificate, along with any configuration that is necessary for getting and renewing those certificates.

Add a sites - domains and SSL certificates

greenlock.add({
    subject: 'example.com',
    altnames: ['example.com', 'www.example.com'],
});

View site config

greenlock.get({
    servername: 'www.example.com',
    wildname: '*.example.com',
});

Update site config

greenlock.update({
    subject: 'www.example.com',
    challenges: {
        'dns-01': {
            module: 'acme-dns-01-ovh',
            token: 'xxxx',
        },
    },
});

Remove a site

To stop automatic renewal of SSL certificates for a particular site. You to restart renewal you must use add().

greenlock.remove({
    subject: 'example.com',
});