mirror of
https://git.coolaj86.com/coolaj86/greenlock-cli.js
synced 2025-02-23 03:38:03 +00:00
9 lines
251 B
Bash
Executable File
9 lines
251 B
Bash
Executable File
#!/bin/bash
|
|
|
|
node bin/letsencrypt certonly \
|
|
--agree-tos --email 'john.doe@gmail.com' \
|
|
--standalone \
|
|
--domains example.com,www.example.com \
|
|
--server https://acme-staging.api.letsencrypt.org/directory \
|
|
--config-dir ~/letsencrypt.test/etc
|