From 8779908b16d92213f7c1e07a4fca9d7834f50a42 Mon Sep 17 00:00:00 2001 From: Kameron Kenny - pi501 Date: Wed, 15 May 2024 09:12:43 -0400 Subject: [PATCH] update init script for letsencrypt --- init-letsencrypt.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init-letsencrypt.sh b/init-letsencrypt.sh index a3f3cb0..0128da1 100755 --- a/init-letsencrypt.sh +++ b/init-letsencrypt.sh @@ -5,11 +5,11 @@ if ! [ -x "$(command -v docker-compose)" ]; then exit 1 fi -domains=(example.org www.example.org) +domains=(thelinuxpro.net thelinux.pro git.thelinuxpro.net kameronkenny.com www.kameronkenny.com blog.kameronkenny.com) rsa_key_size=4096 data_path="./data/certbot" -email="" # Adding a valid address is strongly recommended -staging=0 # Set to 1 if you're testing your setup to avoid hitting request limits +email="kkenny379@gmail.com" # Adding a valid address is strongly recommended +staging=1 # Set to 1 if you're testing your setup to avoid hitting request limits if [ -d "$data_path" ]; then read -p "Existing data found for $domains. Continue and replace existing certificate? (y/N) " decision