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

Posted Snny Bill

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 提示the "ssl" directive is deprecated, use the "listen ... ssl" directive in相关的知识,希望对你有一定的参考价值。

  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 in的主要内容,如果未能解决你的问题,请参考以下文章

nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/n

nginx: the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.con

nginx报错the "ssl" directive is deprecated, use the "listen ... ssl" directive in(

nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx//conf/

nginx 不推荐使用“ssl”指令,请使用“listen ... ssl”

Nginx启动SSL功能