I want to test non-SPDY vs SPDY performance for Nginx and I have Nginx
compiled with SPDY support and it’s enabled by adding to listen
directive
the spdy option as per Module ngx_http_spdy_module.
I thought that omitting the spdy option would disable SPDY temporarily ?
But
it seems spdycheck.org still reports the https:// site supports SPDY and
browser shows site with SPDY support even with the spdy line removed
from
listen directive ?
Or is only way to disable, is to recompile Nginx without SPDY support ?
On Sunday 08 September 2013 15:18:06 George wrote:
I want to test non-SPDY vs SPDY performance for Nginx and I have Nginx
compiled with SPDY support and it’s enabled by adding to listen directive
the spdy option as per Module ngx_http_spdy_module.
I thought that omitting the spdy option would disable SPDY temporarily ?
Without the parameter on listen directive SPDY is disabled.
But it seems spdycheck.org still reports the https:// site supports SPDY
and browser shows site with SPDY support even with the spdy line removed
from listen directive ?
There are only three possibilities for this:
You have not reloaded the configuration after it was changed, then
nginx is working with the old one.
You have removed parameter only from one listen directive but there
is another one. It works per addr:port pair (like most of listen
parameters), not per server block.
Your browser and spdycheck.org is lying about current status.