2016-08-09 21:14:31 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2016-08-09 22:39:39 -04:00
|
|
|
node bin/letsencrypt certonly \
|
2016-08-09 23:40:41 -04:00
|
|
|
--agree-tos --email 'john.doe@gmail.com' \
|
2016-08-09 21:13:26 -04:00
|
|
|
--standalone \
|
2016-08-09 23:40:41 -04:00
|
|
|
--domains example.com,www.example.com \
|
2016-08-09 21:13:26 -04:00
|
|
|
--server https://acme-staging.api.letsencrypt.org/directory \
|
2016-08-09 23:40:41 -04:00
|
|
|
--config-dir ~/letsencrypt.test/etc
|