1)登录萌咖杂货店,购买服务:SSL证书。

购买地址:shop.moeclub.org

1.png

- 阅读剩余部分 -

现在腾讯提供免费的一年证书,地址:https://console.qcloud.com/ssl

nginx重定向 http 自动跳转 https

server
    {
        listen 80;
        server_name blog.luoli.net;
        index index.html index.htm index.php;
        rewrite ^/(.*)$ https://blog.luoli.net/$1 permanent;  //第一种
        return 301 https://www.baidu.com$request_uri;  //第二种
    }

配置ssl证书:

- 阅读剩余部分 -