2
0
mirror of https://github.com/cderche/greenlock-storage-s3 synced 2025-02-21 13:48:05 +00:00
2019-05-08 15:37:55 +01:00
2019-05-08 12:04:12 +01:00
2019-05-08 12:23:52 +01:00
2019-05-08 14:05:05 +01:00
2019-05-08 15:37:55 +01:00
2019-05-08 14:05:05 +01:00
2019-05-08 14:05:05 +01:00
2019-05-08 15:37:55 +01:00
2019-05-08 15:25:23 +01:00
2019-05-08 14:15:46 +01:00

CircleCI Codacy Badge Known Vulnerabilities

greenlock-storage-s3

S3 backed storage strategy for greenlock-express.js (and greenlock.js)

Requirements

You will need a s3 bucket and the corresponding credentials.

Integration

greenlock-express.js


let store = require('greenlock-storage-s3').create({
    accessKeyId: accessKeyId                // Your accessKeyId
    , secretAccessKey: secretAccessKey      // Your secretAccessKey
    , regionName: regionName                // Your regionName
    , bucketName: bucketName                // Your bucketName
    , configDir: 'acme/'                    // Recommended
    , accountsDir: 'accounts/'              // Recommended
    , debug: true                           // Debug
});

var Greenlock = require("greenlock-express");

var greenlock = Greenlock.create({
    // Other options
    , store: store
});

// Continue your greenlock setup

License

ISC

Description
No description provided
Readme 5.3 MiB
Languages
JavaScript 100%