bunkerweb/scripts/certbot-new.sh

10 lines
181 B
Bash

#!/bin/sh
# generate certificate
certbot certonly --webroot -w /opt/bunkerized-nginx/acme-challenge -n -d "$1" --email "$2" --agree-tos
if [ "$?" -ne 0 ] ; then
exit 1
fi
exit 0