blob: 5fb6345113aa6edd49d2a0a09f1cbeceffd1fcbf (
plain) (
tree)
|
|
#!/bin/bash
# Request certificates
certbot certonly --standalone \
--non-interactive --agree-tos --email info@davole.com --http-01-port=380 \
--cert-name davole.com \
-d davole.com
# Concatenate certificates
. /etc/scripts/concatenate-certificates.sh
# Update certificates in HAProxy
. /etc/scripts/update-haproxy-certificates.sh
|