本文主要是介绍【Nginx】the “listen ... http2“ directive is deprecated,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
今天安装了 1.26.0 版本的Nginx,执行nginx -t
命令时报了如下错误:
nginx: [warn] the "listen ... http2" directive is deprecated, use the "http2" directive instead
报这个错误的原因是,Nginx 自从 1.25 版本后,开启http2
的配置写法有变更,旧的写法已经被标记为“过时”。
旧的写法:
server {listen 443 ssl http2;
}
新的写法:
server {listen 443 ssl;http2 on;
}
这篇关于【Nginx】the “listen ... http2“ directive is deprecated的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!