您的位置 首页 nginx错误

use the “listen … ssl” directive instead in /etc/nginx/conf.d/proxy_ssl.conf:34

nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/conf.d/proxy_ssl.conf:34

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

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

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

server { listen 443 ; ssl on; }

解决后

server { listen 443 ssl ; }

 

欢迎来撩 : 汇总all

白眉大叔

关于白眉大叔linux云计算: 白眉大叔

热门文章