首页 > Web开发 > 详细

nginx 使用SSL证书 代理https

时间:2020-11-27 22:28:10      阅读:40      评论:0      收藏:0      [点我收藏+]

 

 

在http{ ... }  中间加入

# HTTPS server
    #
    server {
       listen       4343 ssl;
       server_name  域名;

       ssl_certificate      D:/SoftWare/nginx-1.16.1/cert/Nginx/1.crt;
       ssl_certificate_key  D:/SoftWare/nginx-1.16.1/cert/Nginx/2.key;

       ssl_session_cache    shared:SSL:1m;
       ssl_session_timeout  5m;

       ssl_ciphers  HIGH:!aNULL:!MD5;
       ssl_prefer_server_ciphers  on;

        location / {
            proxy_pass http://localhost:8080;
            
        }
    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    }
1.crt和2.key 是从你从域名中下载一个免费一年证

 

nginx 使用SSL证书 代理https

原文:https://www.cnblogs.com/xiaoruilin/p/14050390.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!