美文网首页
免费的https证书申请

免费的https证书申请

作者: louhangfei | 来源:发表于2019-05-10 08:42 被阅读0次

    如何在linux服务器上部署免费的https证书?下面以centos7在nginx上部署https证书为例。
    1、安装python2-certbot-nginx

    yum install python2-certbot-nginx
    

    2、指定nginx配置文件路径

    certbot --nginx --nginx-server-root=/usr/local/nginx/conf/ -d test.test.com
    

    --nginx-server-root为指定nginx配置文件路径,-d 指定要部署https的域名
    基本上到这一步就安装好了。这时候可以访问https://test.test.com了。
    3、意外
    可能会报错:ImportError: No module named 'requests.packages.urllib3'
    提示缺少requests.packages.urllib3这模块。执行如下命令即可。

    pip install requests urllib3 pyOpenSSL --force --upgrade
    pip install --upgrade --force-reinstall 'requests==2.6.0'
    

    安装好后再执行步骤2即可。

    但是安装好后发现有效期只有三个月。不知道三个月后如何续费。以及有没有更长时间的免费证书。坐等大佬解答。

    相关文章

      网友评论

          本文标题:免费的https证书申请

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