firemail

标题: Windows下Nginx配置SSL实现Https访问 [打印本页]

作者: java    时间: 2018-3-13 18:48
标题: Windows下Nginx配置SSL实现Https访问
修改nginx.conf文件
    nginx.conf文件位于:C:\wnmp\nginx\conf
    找到该文件中如下代码的位置进行修改: 保证本机的端口不被占用 443 和 80

  1.         # HTTPS server
  2.     #
  3.     server {
  4.         listen       443 ssl;
  5.         server_name  www.chunhuitech.cn;

  6.         ssl_certificate      C:/nginx/nginx/ssl/1_www.chunhuitech.cn_bundle.crt;
  7.         ssl_certificate_key  C:/nginx/nginx/ssl/2_www.chunhuitech.cn.key;

  8.         ssl_session_cache    shared:SSL:1m;
  9.         ssl_session_timeout  5m;

  10.         ssl_ciphers  HIGH:!aNULL:!MD5;
  11.         ssl_prefer_server_ciphers  on;

  12.         location / {
  13.             root   html;
  14.             index  index.html index.htm;
  15.         }
  16.     }
复制代码






欢迎光临 firemail (http://firemail.wang:8088/) Powered by Discuz! X3