Merge pull request #142 from pentago/spdy-off

Removed SPDY support as we're using HTTP/2 now.
This commit is contained in:
Andy Dawson 2017-05-06 17:51:38 +02:00 committed by GitHub
commit ba73ae2f89
2 changed files with 0 additions and 16 deletions

View File

@ -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

View File

@ -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;