首页 > Web开发 > 详细

nginx设置只允许https的连接

时间:2015-07-28 21:22:59      阅读:590      评论:0      收藏:0      [点我收藏+]
108     server {
109         listen       443 ssl ;
110         listen      80;
111         server_name  www.westos.org;
112  error_page 497      https://www.westos.org ; //error_page497 重定向
113         ssl_certificate      /root/3;
114         ssl_certificate_key  /root/dty_nopass.key;
115 
116         ssl_session_cache    shared:SSL:1m;
117         ssl_session_timeout  5m;
118         ssl on ;
119         ssl_ciphers  HIGH:!aNULL:!MD5;
120         ssl_prefer_server_ciphers  on;
121         location / {
122             root    html;
123             index  index.html index.htm;
124         }
125     }


nginx设置只允许https的连接

原文:http://my.oschina.net/loveleaf/blog/484823

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