问题:nginx
开启了http2
之后访问时仍然是http1.1
nginx
配置相关:
listen 443 ssl http2;
安装时配置:
configure arguments: --prefix=/usr/local/nginx --with-http_ssl_module --with-ipv6 --with-http_v2_module
错误日志中无报错。
nginx -t
测试命令结果:
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
求解惑。
Helenr