LNMP环境配置SSL证书最简单教程

现在腾讯提供免费的一年证书,地址:https://console.qcloud.com/sslnginx重定向 http 自动跳转 httpsserver{listen 80;server_name app.typecho.me;index index.html index.htm index.php;rewrite ^/(.*)$ https://plugins.typecho.me/$1 permanent;}配置ssl

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

nginx重定向 http 自动跳转 https

server
    {
        listen 80;
        server_name app.typecho.me;
        index index.html index.htm index.php;
        rewrite ^/(.*)$ https://plugins.typecho.me/$1 permanent;
    }

配置ssl证书:

server
    {
        listen 443;
        #listen [::]:80;
        server_name app.typecho.me;
        index index.html index.htm index.php;
        root  /app;
    ssl on;
    ssl_certificate /ssl/app.typecho.me_cert.crt;
    ssl_certificate_key /ssl/app.typecho.me.key;

    include typecho.conf;
    #error_page   404   /404.html;
    include enable-php-pathinfo.conf;

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
        expires      30d;
    }

    location ~ .*\.(js|css)?$
    {
        expires      12h;
    }

    location ~ /\.
    {
        deny all;
    }

    access_log off;
}</pre>

安装完成。腾讯免费SSL证书+LNMP环境演示:https://app.typecho.me/

作者: dawei

【声明】:永州站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。

为您推荐

联系我们

联系我们

0577-28828765

在线咨询: QQ交谈

邮箱: xwei067@foxmail.com

工作时间:周一至周五,9:00-17:30,节假日休息

返回顶部