前端之家收集整理的这篇文章主要介绍了
在Windows上启用Nginx上的http2,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在
Windows 7上使用
Nginx版本1.10.3.我想启用http2.我在
配置文件中
添加了以下
内容:
server {
listen 443 http2 ssl proxy_protocol;
}
当我启动Nginx服务器,我得到以下错误:
2017/02/15 14:34:33 [emerg] 8948#6892: the "http2" parameter requires
ngx_http_v2_module in C:\Develop\Application\Nginx-1.10.3/conf/Nginx.conf:64
行号64与上面指定的行相同.
如何在Windows上安装ngx_http_v2_module?
HTTP2模块目前仅适用于Linux
Nginx-full版本.
考虑使用基于Debian或RHEL的操作系统.
以下命令将帮助您在基于Debian的操作系统上安装Nginx-full:
apt-get install Nginx-full
原文链接:https://www.f2er.com/windows/363791.html