美文网首页
安装Let's Encrypt的SSL证书并自动续期

安装Let's Encrypt的SSL证书并自动续期

作者: 六毫笙 | 来源:发表于2017-11-27 19:16 被阅读0次

    最新版:https://www.zybuluo.com/c-Ku/note/863429
    certbot:https://certbot.eff.org/

    打开 certbot官网 后选择当前主机使用的OS
    例如:I'm using Apache on Debian 7

    如何查看当前主机使用的软件平台
    curl -I 主机ip或地址

    然后是以下两行

    wget https://dl.eff.org/certbot-auto
    chmod a+x certbot-auto
    

    完后进root文件夹下会创建 certbot-auto 这么个文件

    // 添加使用以下代码
    sudo ./certbot-auto --nginx
    // 自动续期使用以下代码
    sudo ./certbot-auto renew --dry-run
    

    详情参见certbot:https://certbot.eff.org/

    相关文章

      网友评论

          本文标题:安装Let's Encrypt的SSL证书并自动续期

          本文链接:https://www.haomeiwen.com/subject/wlodbxtx.html