Live data from Hacker News

HN supports SPDY

spdycheck.org

1–10 of 79 posts

Re: HN supports SPDY

#2
Cool, way too cool! Here are two resources we wrote to help get on with SPDY (shameless plug, though :():

http://blog.bubbleideas.com/2012/08/How-to-set-up-SPDY-on-ng...

http://stackoverflow.com/questions/15152775/how-to-set-up-sp...

We read quite many posts suggesting that SPDY doesn't help much but that's simply not true. At least in our case. If you're delivering assets over secured sockets layer, then SPDY is definitely a plus.

Re: HN supports SPDY

#4

Cool, way too cool! Here are two resources we wrote to help get on with SPDY (shameless plug, though :(): http://blog.bubbleideas.com/2012/08/How-to-set-up-SPDY-on-ng... http://stackoverflow.com/questions/15152775/how-to-set-up-sp... We read quite many posts suggesting that SPDY doesn't help much but that's simply not true. At least in our case. If you're delivering assets over secured sockets layer, then SPDY is def…

I ran into this bug after enabling spdy in nginx and had to disable it.

https://code.google.com/p/chromium/issues/detail?id=161751

Don't know, if it is a nginx thing, but all browsers had problems.

Re: HN supports SPDY

#7
also interesting:

    curl -I https://news.ycombinator.com
    HTTP/1.1 501 Not Implemented
    Server: nginx
    Date: Mon, 06 May 2013 04:31:05 GMT
    Content-Type: text/html
    Content-Length: 174
    Connection: close
don't see that one every day :)

Re: HN supports SPDY

#8

also interesting: curl -I https://news.ycombinator.com HTTP/1.1 501 Not Implemented Server: nginx Date: Mon, 06 May 2013 04:31:05 GMT Content-Type: text/html Content-Length: 174 Connection: close don't see that one every day :)

[deleted]

Re: HN supports SPDY

#9

also interesting: curl -I https://news.ycombinator.com HTTP/1.1 501 Not Implemented Server: nginx Date: Mon, 06 May 2013 04:31:05 GMT Content-Type: text/html Content-Length: 174 Connection: close don't see that one every day :)

I think that's because the web server doesn't implement HEAD requests (that's your -I flag).

Re: HN supports SPDY

#10

also interesting: curl -I https://news.ycombinator.com HTTP/1.1 501 Not Implemented Server: nginx Date: Mon, 06 May 2013 04:31:05 GMT Content-Type: text/html Content-Length: 174 Connection: close don't see that one every day :)

  $ curl -IX GET https://news.ycombinator.com
  HTTP/1.1 200 OK
  Server: nginx
  Date: Mon, 06 May 2013 04:41:40 GMT
  Content-Type: text/html; charset=utf-8
  Transfer-Encoding: chunked
  Connection: keep-alive
  Cache-Control: private
  X-Frame-Options: DENY
  Cache-Control: max-age=0
  Strict-Transport-Security: max-age=31556900; includeSubDomains
Post reply on HN