腾讯云服务器搭建https

 在自己电脑上想搭建https,步骤如下:

1、首先登陆腾讯云,然后在 云产品 ----> SSL 证书管理 如下图:
腾讯云服务器搭建https_第1张图片
2、点开后会看到如下:
腾讯云服务器搭建https_第2张图片
3、点击申请证书,默认选择即可
腾讯云服务器搭建https_第3张图片
4、填写信息完毕后,选择“自动DNS验证”,将自动为域名添加DNS记录,如下图:
腾讯云服务器搭建https_第4张图片
5、等候证书通过,通过后点击下载。
腾讯云服务器搭建https_第5张图片
6、然后把这两个文件放到你的/usr/local/nginx/conf中。
腾讯云服务器搭建https_第6张图片
7、修改nginx.conf文件放到server中 记得把中文删掉

 	listen 443;        
    server_name www.cliyun.club; #填写绑定证书的域名
    ssl on;        
    ssl_certificate 1_cliyun.club_bundle.crt;  #和上图的名字对应       
    ssl_certificate_key 2_cliyun.club.key;   #和上图的名字对应
    ssl_session_timeout 5m;        
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #按照这个协议配置
    ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;#按照这个套件配置
    ssl_prefer_server_ciphers on;

如下图:
腾讯云服务器搭建https_第7张图片
进行重定向的添加:
腾讯云服务器搭建https_第8张图片
这样 https就完成了

  server{
        listen 80 default_server;
        #listen [::]:80 default_server ipv6only=on;
        server_name _;
        index index.html index.htm index.php;
        root  /home/wwwroot/default;
        #error_page   404   /404.html;
        rewrite ^(.*) https://$host$1 permanent;
    }

如果出现问题之后,可能是防火墙的问题:

建议关闭防火墙,并且清空防火墙策略

systemctl iptables stop

iptables -F

你可能感兴趣的:(腾讯云服务器搭建https)