weilou
weilou

Reputation: 4617

Do we need to do anything on server side in order to supporting Chrome's SPDY?

Google's SPDY has been deployed to Chrome 18. It is awesome! It makes web much faster!

So my question is:

If I wanna let my website can support SPDY, do I need to do anything on my server side (E.g. Changing some server's settings)?

Thank you.

Upvotes: 1

Views: 255

Answers (1)

greut
greut

Reputation: 4363

You need a web server that supports it. Like:

  • Jetty
  • node-spdy
  • Apache + mod_spdy

See the SPDY project for more informations: http://dev.chromium.org/spdy and of course, Wikipedia.

Upvotes: 5

Related Questions