remove register.sh

This commit is contained in:
Bruno Zell 2018-09-28 15:50:12 +02:00
parent fc1b972104
commit 00d0b9b803
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
#!/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