Update README.md

This commit is contained in:
AJ ONeal 2015-12-16 05:07:26 -08:00
parent 576402431e
commit f7a494805d
1 changed files with 21 additions and 2 deletions

View File

@ -22,13 +22,32 @@ Install
```bash ```bash
npm install --save letsencrypt npm install --save letsencrypt
npm install --global letsencrypt-cli
``` ```
Usage Usage
===== =====
See [letsencrypt-cli](https://github.com/Daplie/node-letsencrypt-cli) ### letsencrypt-cli
and [letsencrypt-express](https://github.com/Daplie/letsencrypt-express)
See more at [letsencrypt-cli](https://github.com/Daplie/node-letsencrypt-cli)
```bash
letsencrypt certonly \
--agree-tos --email user@example.com \
--standalone \
--domains example.com,www.example.com \
--config-dir ~/letsencrypt/etc \
--server https://acme-staging.api.letsencrypt.org/directory \
ls ~/letsencrypt/etc/live
```
### letsencrypt-express
TODO
See more at [letsencrypt-express](https://github.com/Daplie/letsencrypt-express)
```javascript ```javascript
var config = require('./examples/config-minimal'); var config = require('./examples/config-minimal');