美文网首页
ubuntu配置https 免费获取证书

ubuntu配置https 免费获取证书

作者: simbanyan | 来源:发表于2019-02-15 11:40 被阅读0次

    1、获取Let's Encrypt免费SSL证书很简单,你只需要执行以下命令,就会自动在你的VPS上生成SSL证书和私钥。

    git clone https://github.com/letsencrypt/letsencrypt
    cd letsencrypt
    ./letsencrypt-auto
    

    这样就完成https配置
    2 、 http强制跳转到https

    <VirtualHost *:80>
    ServerName 你的名域
    RewriteEngine on
    RewriteCond %{SERVER_PORT} !^443$
    RewriteRule ^/?(.*)$ https://%{SERVER_NAME}/$1 [L,R]
    </VirtualHost>
    

    然后重启apache服务就可以强制跳转了。

    相关文章

      网友评论

          本文标题:ubuntu配置https 免费获取证书

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