mirror da
https://github.com/cderche/greenlock-storage-s3
synced 2025-07-01 21:56:31 +00:00
42 righe
1.4 KiB
Markdown
42 righe
1.4 KiB
Markdown
[](https://circleci.com/gh/cderche/greenlock-storage-s3)
|
|
[](https://www.codacy.com/app/c.derche/greenlock-storage-s3?utm_source=github.com&utm_medium=referral&utm_content=cderche/greenlock-storage-s3&utm_campaign=Badge_Grade)
|
|
[](https://snyk.io/test/github/cderche/greenlock-storage-s3)
|
|
|
|
# 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
|
|
|
|
```javascript
|
|
|
|
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
|