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

nginx 提示the "ssl" directive is deprecated, use the "listen ... ssl" directive instead

时间:2020-02-02 19:29:35      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:ica   lis   listen   hid   use   out   att   tom   min   

  1. 该问题是由于新版nginx采用新的方式进行监听https请求了解决方式如下:

  2. 在listen中改为
          listen 443 ssl;
  1. 删除ssl配置
           # ssl on;


解决完成前后的配置如下
解决前:

server { listen 443 ; ssl on; }

解决后

server { listen 443 ssl ; }

 

nginx 提示the "ssl" directive is deprecated, use the "listen ... ssl" directive instead

标签:ica   lis   listen   hid   use   out   att   tom   min   

原文地址:https://www.cnblogs.com/123hll/p/12253238.html

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