这篇文章上次修改于 1995 天前,可能其部分内容已经发生变化,如有疑问可询问作者。 >本站用的typecho 和阿里云,这个帖子主要记录怎么搭建ssl环境 1.申请ssl证书https://common-buy.aliyun.com/?spm=5176.7968328.1266638..7b811232vsUK6S&commodityCode=cas#/buy ![申请免费ssl证书][1] [1]: https://img.greenhtml.com/TIM%E5%9B%BE%E7%89%8720190604181838 2.使用的是lnmp ---- https://lnmp.org/faq/letsencrypt-wildcard-ssl.html 3.设置你的阿里云密钥,查看地址:https://usercenter.console.aliyun.com/#/manage/ak ```bash export Ali_Key="123456" export Ali_Secret="abcdef" ``` 4.运行lnmp dns ali,按步骤填写即可 5.typecho配置,Typecho后台 -> 设置 -> 基本设置 -> 站点地址改成https的域名是必须的 6.编辑config.inc.php ```php define('__TYPECHO_SECURE__',true); ``` 7.nginx 配置重定向,注意在vhost文件夹下 ``` server { listen 80; server_name greenhtml.com; return 301 https://www.greenhtml.com$request_uri; } ``` 8./etc/init.d/nginx restart
没有评论