我是靠谱客的博主 坚强早晨,最近开发中收集的这篇文章主要介绍Windows下Nginx配置SSL实现多域名Https访问,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ssl 证书目录

在E:phpStudynginxconfnginx.conf 文件配置

    # HTTPS server
    #
    server {
        listen       80;
       listen       443;
        server_name  www.123.com;
        root   "E:/phpStudy/www/www.123.com";

        ssl                  on;
        ssl_certificate      E:/phpStudy/nginx/ssl/www.123.com_bundle.crt;
        ssl_certificate_key  E:/phpStudy/nginx/ssl/www.123.com.key;

        ssl_session_timeout  5m;

        ssl_protocols  SSLv2 SSLv3 TLSv1;
        ssl_ciphers  HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers   on;

        location / {
            root   "E:/phpStudy/www/www.123.com";
            index  index.html index.htm;
        }
    }    
    
    # HTTPS server
    #
    server {
        listen       80;
      listen       443;
        server_name  www.456.com;
        root   "E:/phpStudy/www/www.456.com";
        
        ssl                  on;
        ssl_certificate      E:/phpStudy/nginx/ssl/www.456.com_bundle.crt;
        ssl_certificate_key  E:/phpStudy/nginx/ssl/www.456.com.key;

        ssl_session_timeout  5m;

        ssl_protocols  SSLv2 SSLv3 TLSv1;
        ssl_ciphers  HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers   on;

        location / {
            root   "E:/phpStudy/www/www.456.com";
            index  index.html index.htm;
        }
    }    

效果:

 

转载于:https://www.cnblogs.com/linyusong/p/8288419.html

最后

以上就是坚强早晨为你收集整理的Windows下Nginx配置SSL实现多域名Https访问的全部内容,希望文章能够帮你解决Windows下Nginx配置SSL实现多域名Https访问所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(33)

评论列表共有 0 条评论

立即
投稿
返回
顶部