如何使用来自用户输入的www生成域名?

时间:2018-03-27 06:38:42

标签: bash lets-encrypt

用户将输入域名,不知道是否有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.comwww.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}

0 个答案:

没有答案