nginx篇最初级用法之SSL虚拟主机
Posted lqinghua
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx篇最初级用法之SSL虚拟主机相关的知识,希望对你有一定的参考价值。
注意:在源码安装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虚拟主机的主要内容,如果未能解决你的问题,请参考以下文章