An open API service indexing awesome lists of open source software.

https://github.com/interactivetraining/le-store-gcloud-storage

Automatically store your Let's Encrypt certificates using Google Cloud Storage and Greenlock (node-greenlock)
https://github.com/interactivetraining/le-store-gcloud-storage

google-cloud-storage greenlock greenlock-express lets-encrypt nodejs ssl

Last synced: 5 months ago
JSON representation

Automatically store your Let's Encrypt certificates using Google Cloud Storage and Greenlock (node-greenlock)

Awesome Lists containing this project

README

          

# le-store-gcloud-storage
**ALPHA** - USE AT YOUR OWN RISK - PRs are welcome!

```typescript
import {GCloudStoreCreate} from '@interactivetraining/le-store-gcloud-storage'

require('greenlock-express').create({
store: GCloudStoreCreate({
bucketName: 'my-certs',
projectId: 'google-cloud-project-id',
keyFilename: '/path/to/google-cloud-key-file.json',
dbFileName: 'my-certs-db.json'
})
}).listen(80, 443, () => console.log(`Listening...`));
```