Nginx 增加 SPDY 支持并测试

安装spdy
nginx从1.5开始是支持spdy格式的。
http://nginx.org/en/docs/http/ngx_http_spdy_module.html#example

最新的nginx当然也支持,是spdy3。

编译的时候直接增加参数: –with-http_spdy_module ,即可。

spdy配置
如果安装成功了spdy,直接修改nginx配置即可

server {
    listen 443 ssl spdy;

    ssl_certificate server.crt;
    ssl_certificate_key server.key;
    ...
}测试spdy
直接访问接口。使用chrome,打开 chrome://net-internals/#spdy,就可以看到spdy。
比如:

Nginx 增加 SPDY 支持并测试

或者使用spdy测试网站:
https://spdycheck.org/#google.com

Nginx 增加 SPDY 支持并测试

--------------------------------------分割线 --------------------------------------

Nginx 的详细介绍:请点这里
Nginx 的下载地址:请点这里

相关推荐