8 lines
No EOL
324 B
Bash
8 lines
No EOL
324 B
Bash
#!/bin/bash
|
|
echo "Generating SSL..."
|
|
cd /root/website
|
|
greenlock certonly --webroot-path public \
|
|
--acme-version draft-11 --acme-url https://acme-v02.api.letsencrypt.org/directory \
|
|
--agree-tos --email <EMAIL> --domains < --domains palmpay.io,www.palmpay.io <- example > \
|
|
--community-member \
|
|
--config-dir ./acme/etc |