2017-10-02 01:43:15 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
usage() {
|
2017-11-16 01:03:20 +01:00
|
|
|
cat <<EOF >&2
|
|
|
|
Usage: $0 --hostname=zulip.example.com --email=admin@example.com [--method={webroot|standalone}] [--no-zulip-conf]
|
|
|
|
EOF
|
|
|
|
exit 1
|
2017-10-02 01:43:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if [ "$EUID" -ne 0 ]; then
|
|
|
|
echo "Error: This script must be run as root" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2017-11-16 00:19:54 +01:00
|
|
|
method=webroot
|
|
|
|
args="$(getopt -o '' --long help,hostname:,email:,method:,no-zulip-conf -n "$0" -- "$@")"
|
2017-10-02 01:43:15 +02:00
|
|
|
eval "set -- $args"
|
|
|
|
while true; do
|
|
|
|
case "$1" in
|
|
|
|
--hostname)
|
|
|
|
DOMAIN="$2"
|
|
|
|
shift
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--email)
|
|
|
|
EMAIL="$2"
|
|
|
|
shift
|
|
|
|
shift
|
|
|
|
;;
|
2017-11-16 00:19:54 +01:00
|
|
|
--method)
|
|
|
|
method="$2"
|
|
|
|
shift
|
|
|
|
shift
|
|
|
|
;;
|
2017-11-15 00:48:22 +01:00
|
|
|
--no-zulip-conf)
|
|
|
|
no_zulip_conf=1
|
|
|
|
shift
|
|
|
|
;;
|
2017-10-02 01:43:15 +02:00
|
|
|
--help)
|
|
|
|
show_help=1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ -n "$show_help" ]; then
|
|
|
|
usage
|
|
|
|
fi
|
|
|
|
|
2017-11-16 01:04:54 +01:00
|
|
|
if [ -z "$DOMAIN" -o -z "$EMAIL" ]; then
|
|
|
|
usage
|
|
|
|
fi
|
|
|
|
|
2017-11-16 00:19:54 +01:00
|
|
|
case "$method" in
|
|
|
|
standalone)
|
|
|
|
method_args=(--standalone)
|
|
|
|
;;
|
|
|
|
webroot)
|
|
|
|
method_args=(--webroot --webroot-path=/var/lib/zulip/certbot-webroot/)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2017-11-15 22:27:48 +01:00
|
|
|
set -x
|
|
|
|
|
2017-11-10 19:32:55 +01:00
|
|
|
CERTBOT_PATH="/usr/local/sbin/certbot-auto"
|
2017-10-02 01:43:15 +02:00
|
|
|
# For reference https://certbot.eff.org/all-instructions/#debian-other-nginx
|
2017-11-15 00:14:52 +01:00
|
|
|
wget -q https://dl.eff.org/certbot-auto -O "$CERTBOT_PATH"
|
2017-11-10 19:32:55 +01:00
|
|
|
chmod a+x "$CERTBOT_PATH"
|
2017-10-02 01:43:15 +02:00
|
|
|
|
2017-11-16 00:19:54 +01:00
|
|
|
"$CERTBOT_PATH" certonly "${method_args[@]}" -d "$DOMAIN" -m "$EMAIL" --agree-tos --non-interactive
|
2017-10-02 01:43:15 +02:00
|
|
|
|
2017-11-15 00:12:26 +01:00
|
|
|
symlink_with_backup() {
|
|
|
|
if [ -e "$2" ]; then
|
|
|
|
# If the user is setting up our automatic certbot-management on a
|
|
|
|
# system that already has certs for Zulip, use some extra caution
|
|
|
|
# to keep the old certs available.
|
|
|
|
mv -f --backup=numbered "$2" "$2".setup-certbot || true
|
|
|
|
fi
|
|
|
|
ln -nsf "$1" "$2"
|
|
|
|
}
|
|
|
|
|
|
|
|
CERT_DIR=/etc/letsencrypt/live/"$DOMAIN"
|
|
|
|
symlink_with_backup "$CERT_DIR"/privkey.pem /etc/ssl/private/zulip.key
|
|
|
|
symlink_with_backup "$CERT_DIR"/fullchain.pem /etc/ssl/certs/zulip.combined-chain.crt
|
2017-10-02 01:43:15 +02:00
|
|
|
|
2017-11-16 00:19:54 +01:00
|
|
|
case "$method" in
|
|
|
|
webroot)
|
|
|
|
service nginx reload
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2017-11-15 00:48:22 +01:00
|
|
|
if [ -z "$no_zulip_conf" ]; then
|
|
|
|
crudini --set /etc/zulip/zulip.conf certbot auto_renew yes
|
|
|
|
fi
|
|
|
|
|
2017-10-02 01:43:15 +02:00
|
|
|
echo "Certbot SSL certificate configuration succeeded."
|