溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

免費https證書申請

發(fā)布時間:2020-06-08 13:22:21 來源:網絡 閱讀:381 作者:Shiny_boy 欄目:系統(tǒng)運維

https證書申請

通過Let' s Encrypt進行免費https證書申請

  1. 官網網站
    首先在動手前,可以先去certbot看看,我覺得還是很有必要的啦!
  2. 安裝certbot

    yum install epel-release -y
    yum install certbot
  3. 通配符證書申請命令
    執(zhí)行命令中會去驗證域名的所有者,也就是添加一條TXT記錄到域名控制臺。
    certbot certonly  -d *.test.com --manual --preferred-challenges dns --server https://acme-v02.api.letsencrypt.org/directory

    完成后會顯示域名所在目錄

4、自動續(xù)期

echo "0 0,12 * * * root python -c 'import random; import time; time.sleep(random.random() * 3600)' && certbot renew" | sudo tee -a /etc/crontab > /dev/null

默認到期前30天續(xù)期,如果不滿足可手動配置
/etc/letsencrypt/renewal/test.conf

5、證書清理
如果不想要了或者其他原因需要清理,執(zhí)行以下命令即可

rm -rf /etc/letsencrypt/live/www.example.com/
rm -rf /etc/letsencrypt/archive/www.example.com/
rm /etc/letsencrypt/renewal/www.example.com.conf
向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI