add stubs for ssl-stapling and spdy
This commit is contained in:
parent
759bf84163
commit
7295a765ee
|
@ -0,0 +1,7 @@
|
||||||
|
# Nginx's spdy module is currently experimental
|
||||||
|
|
||||||
|
# Adjust connection keepalive for SPDY clients:
|
||||||
|
spdy_keepalive_timeout 300; # up from 180 secs default
|
||||||
|
|
||||||
|
# enable SPDY header compression
|
||||||
|
spdy_headers_comp 6;
|
|
@ -0,0 +1,5 @@
|
||||||
|
# OCSP stapling...
|
||||||
|
ssl_stapling on;
|
||||||
|
ssl_stapling_verify on;
|
||||||
|
#ssl_trusted_certificate /path/to/ca.crt;
|
||||||
|
resolver 8.8.8.8;
|
Loading…
Reference in New Issue