码迷,mamicode.com
首页 > Web开发 > 详细

nginx设置只允许https的连接

时间:2015-07-28 21:23:32      阅读:206      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!