码迷,mamicode.com
首页 > 其他好文 > 详细

nginx篇最初级用法之SSL虚拟主机

时间:2019-10-03 16:16:48      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:ber   open   设置   name   http   主机   www   ref   ima   

注意:在源码安装nginx时必须要使用--with-http_ssl_module参数启动加密模块.

openssl genrsa > cert.key  //使用openssl自己签发私钥

openssl req -new -x509 -key cert.key > cert.pem //签发证书

修改nginx配置文件,设置加密网站的虚拟主机

server {

listen 443 ssl;

server_name          www.baidu.com;

ssl_certificate cert.pem; #这里是证书文件

ssl_certificate_key cert.key; #这里是私钥文件

ssl_session_cache shared:SSL:1m;

ssl_session_timeout 5m;

ssl_ciphers HIGH:!aNULL:!MD5;

ssl_prefer_server_ciphers on;

  location / {

  root html;

  index index.html index.htm;

  }

}

技术图片

 

nginx篇最初级用法之SSL虚拟主机

标签:ber   open   设置   name   http   主机   www   ref   ima   

原文地址:https://www.cnblogs.com/lqinghua/p/11619749.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!