配置https

我的https 是申请腾讯免费的
监听80端口转发到https

 server {
   listen 80; 
    server_name  www.meethong.xyz;
    return https://www.meethong.xyz;}

监听443端口

server {
    listen 443;
    server_name www.meethong.xyz; #填写绑定证书的域名
    ssl on;  #开启ssl协议
    ssl_certificate crt/1_www.meethong.xyz_bundle.crt;#位置
    ssl_certificate_key  crt/2_www.meethong.xyz.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;
    location / {
        proxy_pass http://127.0.0.1:端口;
        root   html; #站点目录
        index  index.html index.htm;
    }
}

可以参考一下

你可能感兴趣的:(配置https)