From 046aaaee844805aca28d59bb7215d291308d4094 Mon Sep 17 00:00:00 2001 From: Pentago Date: Mon, 13 Jun 2016 20:31:13 +0200 Subject: [PATCH] Removed SPDY support as we're using HTTP/2 now. Ref: df102c6 --- doc/h5bp.md | 5 ----- h5bp/directive-only/spdy.conf | 11 ----------- 2 files changed, 16 deletions(-) delete mode 100644 h5bp/directive-only/spdy.conf 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;