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