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)
- Host: GitHub
- URL: https://github.com/interactivetraining/le-store-gcloud-storage
- Owner: InteractiveTraining
- License: mit
- Created: 2019-03-17T15:37:50.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-17T18:22:08.000Z (almost 7 years ago)
- Last Synced: 2025-07-31T10:30:01.974Z (6 months ago)
- Topics: google-cloud-storage, greenlock, greenlock-express, lets-encrypt, nodejs, ssl
- Language: TypeScript
- Size: 10.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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...`));
```