Skip to content

Instantly share code, notes, and snippets.

@lucassmacedo
Last active October 26, 2022 12:47
Show Gist options
  • Save lucassmacedo/e0836a6770e6bf6633609bb323b89129 to your computer and use it in GitHub Desktop.
Save lucassmacedo/e0836a6770e6bf6633609bb323b89129 to your computer and use it in GitHub Desktop.
Generate Let's Encrypt SSL to All Hosts
#!/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