Can I disable SPDY in a Google App Engine HTTPS request?

Asked

Viewed 147 times

1

If I access my application by https:// in the GAE, it is automatically served by SPDY for compatible browsers. That’s good. But I wanted to know if I can disable this behavior and use HTTPS with 1.1 even normal. Any header or configuration I can do?

To be clear, I’m asking you to disable on the server, for all clients, not in my browser.

2 answers

1

In the Chrome you will have to do via command line:

chrome.exe --use-spdy=off

In the firefox, you can go on the settings screen by accessing about:config and adjust the configuration network.http.spdy.enabled for false

  • Thanks for trying, but my question was about disabling SPDY on the server, not in the browser. In browser ok, it’s easy, I do it here. But I wanted to disable all the clients, not just me.

0

Resurrecting the topic: For spdy to work you need to compile mod_spdy in apache, for example. Try to disable it.

  • I don’t understand how to disable.. If compiling mod_spdy disables SPDY? That’s it?

  • Thanks for trying, but the question is about the Google App Engine, not the Apache mod_spdy

Browser other questions tagged

You are not signed in. Login or sign up in order to post.