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


85

在NGINX升级到后,v1.15.2开始收到警告。

nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /usr/local/etc/nginx/sites-enabled/confid-file-name:8

第八行在哪里 ssl on;


那是什么问题呢?
Jcl

1
我正在寻找如何解决的答案
sambua,

1
我既有listen ... ssl又有ssl on,现在似乎ssl on不再需要
sambua

Answers:


171

listen从以下位置编辑您的陈述:

listen 443;

listen 443 ssl;

并注释掉或删除:

# ssl on;   

然后nginx -t再次检查。


9
service nginx reload根据您的操作系统,可能需要根据需要重新加载nginx config或其他命令
Sliq,
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.