nginx spdy支持不起作用

我试着在这里安装spdy支持nginx: ningx spedy ,我使用了这个configuration命令

./configure --with-http_ssl_module --with-http_spdy_module --with-openssl="/..../openssl/openssl-1.0.1c" 

但是当我去spdycheck.org检查我的网站时,我得到的结果是NPN启用,但不是spdy,找不到任何信息,现在我可以开始破解(没有在错误日志中),任何想法的人?

编辑:

 # Force URL on https and www server{ listen 80; server_name www.example.com example.com; rewrite ^ https://www. example.com$1 permanent; } server { listen 443 ssl spdy; ssl_certificate /usr/ssl/nginx/server.crt; ssl_certificate_key /usr/ssl/nginx/server.key; server_name www. example.com; access_log /var/log/nginx/test.tedxnanjing.access; error_log /var/log/nginx/test.tedxnanjing.error error; fastcgi_read_timeout 120; location / { root /var/www/html; index index.html index.htm index.php; } location ~* ^.+.(jpg|jpeg|gif|bmp|ico|png|css|js|swf|log|zip|tar)$ { root /var/www/html; expires max; } location ~ \.php$ { include /etc/nginx/fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name; } } 

你正在使用什么版本的NGINX? 键入: nginx -Vnginx -v输出,不带其他参数。 如果运行的NGINX低于1.5.10,则运行SPDY草稿2,据我所知,这个草案已被弃用,并且在浏览器中没有正确显示。 此外,您还需要OpenSSL 1.0.1及更高版本,最好是1.0.1g版本,其中包含Heartbleed错误的修补程序。

你如何检查SPDY是否工作? 我的build议是通过Chrome浏览器中的chrome://net-internals/#spdy进行检查(只需在Chromesearch字段中input)或Firefox SPDY Indicator插件。