在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;
Answers:
listen
从以下位置编辑您的陈述:
listen 443;
至
listen 443 ssl;
并注释掉或删除:
# ssl on;
然后nginx -t
再次检查。
service nginx reload
根据您的操作系统,可能需要根据需要重新加载nginx config或其他命令