腾讯云站点添加SSL认证,LNMP项目

重定向版本:

[root@VM_82_192_centos conf]# cat nginx.conf
user  www www;

worker_processes auto;

error_log  /home/wwwlogs/nginx_error.log  crit;

pid        /usr/local/nginx/logs/nginx.pid;

#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 51200;

events
    {
        use epoll;
        worker_connections 51200;
        multi_accept on;
    }

http
    {
        include       mime.types;
        default_type  application/octet-stream;

        server_names_hash_bucket_size 128;
        client_header_buffer_size 32k;
        large_client_header_buffers 4 32k;
        client_max_body_size 50m;

        sendfile   on;
        tcp_nopush on;

        keepalive_timeout 60;

        tcp_nodelay on;

        fastcgi_connect_timeout 300;
        fastcgi_send_timeout 300;
        fastcgi_read_timeout 300;
        fastcgi_buffer_size 64k;
        fastcgi_buffers 4 64k;
        fastcgi_busy_buffers_size 128k;
        fastcgi_temp_file_write_size 256k;

        gzip on;
        gzip_min_length  1k;
        gzip_buffers     4 16k;
        gzip_http_version 1.1;
        gzip_comp_level 2;
        gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/xml+rss;
        gzip_vary on;
        gzip_proxied   expired no-cache no-store private auth;
        gzip_disable   "MSIE [1-6]\.";

        #limit_conn_zone $binary_remote_addr zone=perip:10m;
        ##If enable limit_conn_zone,add "limit_conn perip 10;" to server section.

        server_tokens off;
        access_log off;


server {
listen   80;
server_name _;
rewrite ^(.*) https://$host$1 permanent;
}
include vhost/*.conf;
}

添加:
报错:j解决方法:每个二级域名都要申请SSL证书

Stoping LNMP...
Stoping nginx... nginx: [warn] conflicting server name "music.vipelephant.cn" on 0.0.0.0:443, ignored
done
Shutting down MySQL. SUCCESS!
Gracefully shutting down php-fpm . done
Starting LNMP...
Starting nginx... nginx: [warn] conflicting server name "music.vipelephant.cn" on 0.0.0.0:443, ignored
done

[root@VM_82_192_centos vhost]# vi music.vipelephant.cn.conf 

server
    {
        listen 443 ssl http2;
        #listen [::]:443 ssl http2;
        server_name music.vipelephant.cn music.vipelephant.cn;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /home/wwwroot/music.vipelephant.cn/;
        ssl on;
        ssl_certificate /usr/local/nginx/conf/ssl/1_www.vipelephant.cn_bundle.crt;
        ssl_certificate_key /usr/local/nginx/conf/ssl/2_www.vipelephant.cn.key;
        ssl_session_timeout 5m;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        ssl_prefer_server_ciphers on;
        ssl_ciphers "EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5";
        ssl_session_cache builtin:1000 shared:SSL:10m;
        # openssl dhparam -out /usr/local/nginx/conf/ssl/dhparam.pem 2048
        ssl_dhparam /usr/local/nginx/conf/ssl/dhparam.pem;

        include none.conf;
        #error_page   404   /404.html;

        # Deny access to PHP files in specific directory
        #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

        include enable-php.conf;

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

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

        location ~ /.well-known {
            allow all;
        }

        location ~ /\.
        {
            deny all;
        }

        access_log  /home/wwwlogs/music.vipelephant.cn.log;
    }

1、申请SSL许可证

2、

[root@VM_82_192_centos vhost]# cat testssl.vipelephant.cn.conf 

server
    {
        listen 443 ssl http2;
        #listen [::]:443 ssl http2;
        server_name testssl.vipelephant.cn ;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /home/wwwroot/testssl.vipelephant.cn;
        ssl on;
        ssl_certificate /usr/local/nginx/conf/ssl/1_testssl.vipelephant.cn_bundle.crt;
        ssl_certificate_key /usr/local/nginx/conf/ssl/2_testssl.vipelephant.cn.key;

        include none.conf;
        #error_page   404   /404.html;

        # Deny access to PHP files in specific directory
        #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

        include enable-php.conf;

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

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

        location ~ /.well-known {
            allow all;
        }

        location ~ /\.
        {
            deny all;
        }

        access_log  /home/wwwlogs/testssl.vipelephant.cn.log;
    }
[root@VM_82_192_centos vhost]# 

修改原来无认证的网站:
resume.vipelephant.cn:
直接把申请到的公钥和私钥方放到自定义目录:然后修改conf文件如下添加:



直接按原来的访问:resume.vipelephant.cn自动转换https:

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,973评论 19 139
  • 安装Homebrew 安装Homebrew ruby -e "$(curl -fsSL https://raw.g...
    nanhangfei阅读 11,815评论 0 10
  • 1.简介:  Nginx:engine X ,2002年,开源,商业版 http协议:web服务器(类似于ht...
    尛尛大尹阅读 1,896评论 0 3
  • 学习python的第一步就是要把python的开发环境搭建起来,在这里科多用的是Anconda4.4.0版本。 A...
    嘿嘿海海阅读 235评论 0 1
  • 一个萌新的瞎折腾 在刚安装的Atom上,中间会有一条白线,我不知道什么作用(汗),所以我决定去掉 我用的是wind...
    韩奔跑2阅读 1,951评论 0 1