add register script bash

This commit is contained in:
Valder Gallo 2018-06-27 23:34:43 -03:00
parent 418560a7be
commit d9ba362833
1 changed files with 17 additions and 0 deletions

17
scripts/register.sh Normal file
View File

@ -0,0 +1,17 @@
#!/bin/sh
PRODUCTION_URL='https://acme-v01.api.letsencrypt.org/directory'
STAGING_URL='https://acme-staging.api.letsencrypt.org/directory'
if [ "${IS_STAGING}" = "1" ]; then
letsencrypt_url=$STAGING_URL
echo "Staging ..."
else
letsencrypt_url=$PRODUCTION_URL
echo "Production ..."
fi
echo "running certbot ... $letsencrypt_url $1 $2"
certbot certonly --agree-tos --keep -n --text --email $2 --server \
$letsencrypt_url -d $1 --http-01-port 1337 \
--standalone --preferred-challenges http-01 --debug