let's encrypt免费证书申请及使用

let's encrypt是国外一家提供免费ssl域名证书的机构,申请过程非常简单,但是免费期只有90天,不过到期可以免费续签。

下载let's encrypt的注册工具:

git clone https://github.com/certbot/certbot.git

注册: 

cd letsencrypt

./letsencrypt-auto certonly --standalone --email [email protected] -d muyutingtao.com -d www.muyutingtao.com

续期:

./letsencrypt-auto certonly --renew-by-default --email [email protected] -d muyutingtao.com -d www.muyutingtao.com

避免忘记续期,把上述操作写成脚本定时运行:

#!/bin/bash
 cd  /root/letsencrypt/
./letsencrypt-auto certonly --renew-by-default --email [email protected] -d muyutingtao.com -d www.muyutingtao.com



你可能感兴趣的:(网站技术(LNT))