mirror of
https://github.com/lemeow125/ansible-playbooks.git
synced 2024-11-17 12:19:26 +08:00
35 lines
No EOL
902 B
Bash
35 lines
No EOL
902 B
Bash
#!/bin/bash
|
|
|
|
# Read CF_Token from .env
|
|
source ".env"
|
|
|
|
export CF_Token "$CF_Token"
|
|
|
|
/root/.acme.sh/acme.sh --upgrade --auto-upgrade
|
|
|
|
# Array of domains
|
|
domains=("*.06222001.xyz" "06222001.xyz")
|
|
legacy_domains=()
|
|
all_domains=("${domains[@]}" "${legacy_domains[@]}")
|
|
|
|
# Whether to force update or not
|
|
force_update=false
|
|
echo "===== Force update domains: " $force_update " ====="
|
|
|
|
# Loop through the domains and execute the commands for each one
|
|
for domain in "${all_domains[@]}"
|
|
do
|
|
|
|
# Issue the certificate using acme.sh
|
|
echo "====== Registering domain:" $domain " ======"
|
|
if $force_update ; then
|
|
/root/.acme.sh/acme.sh --force --issue --dns dns_cf --keylength 4096 -d "$domain" --server letsencrypt
|
|
else
|
|
/root/.acme.sh/acme.sh --issue --dns dns_cf --keylength 4096 -d "$domain" --server letsencrypt
|
|
fi
|
|
|
|
done
|
|
|
|
echo "===== Reloading firewall ====="
|
|
service nginx reload
|
|
echo "===== Done =====" |