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

1

If I access my application via https: // in GAE, it is automatically served by SPDY to compatible browsers. That's nice. But I was wondering if I can disable this behavior and use HTTPS with 1.1 even normal. Any header or configuration that I can do?

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

    
asked by anonymous 01.02.2014 / 05:24

2 answers

1

In chrome you will have to do it via the command line:

chrome.exe --use-spdy=off

In firefox , you can go to the settings screen by going to about:config and adjust the setting network.http.spdy.enabled to false

    
01.02.2014 / 10:48
0

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

    
22.07.2015 / 15:09