Update README.md
This commit is contained in:
parent
576402431e
commit
f7a494805d
23
README.md
23
README.md
|
@ -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');
|
||||||
|
|
Loading…
Reference in New Issue