Last active
October 26, 2022 12:47
-
-
Save lucassmacedo/e0836a6770e6bf6633609bb323b89129 to your computer and use it in GitHub Desktop.
Generate Let's Encrypt SSL to All Hosts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
RED="\e[31m" | |
ENDCOLOR="\e[0m" | |
for file in ./nginx/sites-available/*.conf; do | |
domain=$(basename "$file" .conf | cut -d'-' -f2) | |
if [ ! -d "/etc/letsencrypt/live/$domain" ]; then | |
certbot certonly --standalone -d "$domain" --agree-tos --non-interactive --register-unsafely-without-email | |
echo -e "Generating SLL for ${RED}$domain${ENDCOLOR}" | |
else | |
echo -e "${RED}$domain${ENDCOLOR} already has a certificate" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment