该警告信息 "nginx: [warn] the 'listen ... http2' directive is deprecated" 表明在 nginx 的配置文件中使用的 listen ... http2 指令已经被弃用。这通常意味着在未来的 nginx 版本中,该指令可能会被完全移除,因此建议使用新的或替代的配置方式。 2. 替代方法 在较新版本的 nginx 中,推荐的方式是在 li...
nginx: [warn] the "listen ... http2" directive is deprecated, use the "http2" directive instead 经过查阅nginx官方文档,发现http2的配置格式已经发生了变化,1.19.1之前是下面的配置: 代码语言:javascript 复制 server { listen 443 ssl http2; 1.25.1版本之后,需按照如下格式配置http2 代码语言:javascript...
nginx: [warn] the "listen ... http2" directive is deprecated, use the "http2" directive instead in /etc/nginx/conf.d/crm.cdabon.com.conf:4 分析原因:http2 监听指令的用法已更改,以前的使用模式已被弃用。 Announcing NGINX Plus R30 - NGINXwww.nginx.com/blog/nginx-plus-r30-released/#Im...
在1.25.1 版本后的 nginx 运行日志中,可能会发现以下警告信息: nginx: [warn] the"listen ... http2"directive is deprecated,usethe"http2"directive instead in etc/nginx/nginx.conf :15 原配置: listen 443 ssl http2; 修改配置为: listen 443 ssl; http2 on; 重启nginx 即可。 参考:https://github...
Nginx在1.25.0版本中实验性的支持HTTP/3后,在1.25.1版本中弃用了listen指令的http2参数,单独加入了http2指令。 the “listen … http2” directive is deprecated异常 如果Nginx1.25.1及以后版本中,进行如下方式的配置: 代码语言:javascript 复制 listen443ssl http2;listen[::]:443ssl http2; ...
在添加vhost的时候遇到了一个错误提示:“nginx: [warn] the “listen … http2” directive is deprecated, use the “http2” directive instead”,然后搜索了一下发现NGINX最近确实有这个毛病,解决办法: 修改conf配置文件,改为: listen 443 ssl; listen [::]:443 ssl; ...
nginx: [warn] the "listen ... http2" directive is deprecated, use the "http2" directive instead 经过查阅nginx官方文档,发现http2的配置格式已经发生了变化,1.19.1之前是下面的配置: 代码语言:javascript 复制 server { listen 443 ssl http2; ...
Describe the bug Update Nginx to 1.25.1 and restart server [warn] the "listen ... http2" directive is deprecated, use the "http2" directive instead Tell us how to replicate the bug Update Nginx to 1.25.1 and restart server [warn] the "li...
挖站否(WZFou.com),域名取自挖(Wa)站(Zhan)否(Fou),即挖掘建站的意思。网站旨在分享建站教程、资源、经验与技巧,内容将涵盖VPS、服务器、域名、DNS、SSL、CDN等等。
在listen中改为 listen443 ssl; 删除ssl配置 # ssl on; 解决完成前后的配置如下 解决前: server {listen443 ;sslon; } 解决后 server {listen443 ssl ; } 作者:KeerDi——北方的后生出处:http://www.cnblogs.com/keerdi/本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面...