diff --git a/doc/h5bp.md b/doc/h5bp.md index 766c87f..14bc629 100644 --- a/doc/h5bp.md +++ b/doc/h5bp.md @@ -81,11 +81,6 @@ if used, from optimizing HTML responses. This file contains sane-default config for setting up nginx to handle SSL traffic. -### spdy.conf - -[SPDY](https://developers.google.com/speed/spdy/) is Google's experimental network -protocol. Nginx provides [experimental support](http://nginx.org/en/docs/http/ngx_http_spdy_module.html) for SPDY as of version 1.5.9. - ### ssl-stapling.conf [OCSP staping](http://en.wikipedia.org/wiki/OCSP_stapling) relates to handling diff --git a/h5bp/directive-only/spdy.conf b/h5bp/directive-only/spdy.conf deleted file mode 100644 index 002a52e..0000000 --- a/h5bp/directive-only/spdy.conf +++ /dev/null @@ -1,11 +0,0 @@ -# Nginx's spdy module is compiled by default from 1.6 -# SPDY only works on HTTPS connections - -# Inform browser of SPDY availability -add_header Alternate-Protocol 443:npn-spdy/3; - -# Adjust connection keepalive for SPDY clients: -spdy_keepalive_timeout 300s; # up from 180 secs default - -# enable SPDY header compression -spdy_headers_comp 6;