用户将输入域名,不知道是否有www。最终结果应为-d domain.com -d www.domain.com
这是我的尝试,但失败了:
letsdomain=""
if [ ! -z "${server_names}" ]; then
for i in ${server_names}
do
letsdomain=${letsdomain}" -d ${i}"
done
fi
我正在尝试通过以下命令获取适用于domain.com
和www.domain.com
的Lets Encrypt ssl证书。感谢。
echo "Starting create Let's Encrypt SSL Certificate..."
/bin/certbot certonly --email ${email} --agree-tos -n --webroot -w ${website_root} ${letsdomain}