greenlock-manager-fs
v3.1.1
Published
A simple file-based management strategy for Greenlock
Maintainers
Readme
greenlock-manager-fs.js
A simple file-based management strategy for Greenlock v3
(to manage SSL certificates for sites)
Install
npm install --save greenlock-manager-fs@v3Usage
npx greenlock init --manager greenlock-manager-fs --config-dir './greenlock.d'Or, place this file in the root of your project:
.greenlockrc:
{
"manager": { "module": "@greenlock/manager" },
"configDir": "./greenlock.d"
}Example config file
You might start your config file like this:
./greenlock.d/config.json:
{
"subscriberEmail": "[email protected]",
"agreeToTerms": true,
"sites": [
{
"subject": "example.com",
"altnames": ["example.com", "*.example.com"]
}
]
}CLI Management (coming soon)
We're going to be adding some tools to greenlock so that you can do something like this to manage your sites and SSL certificates:
npx greenlock defaults --subscriber-email [email protected] --agree-to-terms truenpx greenlock add --subject example.com --altnames example.com,*.example.comnpx greenlock renew --all