O Nginx agora suporta o Spdy Draft 3.1 da versão 1.5.10.
Atualmente estou usando o Nginx 1.4.1 com o módulo SPDY.
Infelizmente, o módulo Nginx SPDY funciona apenas com o Draft 2 do protocolo.
Existe uma maneira de usar o Nginx, com o SPDY Draft 3?
Da pesquisa que fiz, não há nenhum módulo atual para o SPDY Draft 3. Parece que o desenvolvimento basicamente parou. Você está sem sorte, a menos que você codifique seu próprio módulo, infelizmente.
Você pode querer ler a explicação sobre por que o spdy / 2 está OK (e ainda melhor) por enquanto: link
Spdy / 3 está agora disponível para o NGINX. Por favor, consulte o seguinte link para instruções de instalação:
This patch upgrades implementation of SPDY protocol in the
ngx_http_spdy_module from draft 2 to draft 3.1.
How-to for newbies:
1) Make sure that you have OpenSSL 1.0.1 or later.
2) Download nginx/1.5.9:
% wget http://nginx.org/download/nginx-1.5.9.tar.gz
3) Unpack it:
% tar xvfz nginx-1.5.9.tar.gz
% cd nginx-1.5.9
4) Download and apply the patch:
% wget http://nginx.org/patches/patch.spdy-v31.txt
% patch -p1 < patch.spdy-v31.txt
5) Configure and build nginx:
% ./configure --with-http_ssl_module --with-http_spdy_module
% make
Hint: have a look at http://nginx.org/en/docs/configure.html
and try "./configure --help" for more useful options.