tatsuhiro-t / spdylay

The experimental SPDY protocol version 2, 3 and 3.1 implementation in C
http://tatsuhiro-t.github.io/spdylay/
MIT License
604 stars 102 forks source link

shrpx and redirect loops with 301 status codes #117

Open nubela opened 9 years ago

nubela commented 9 years ago

Hi,

I'm using shrpx on --spdy (spdy proxy mode) to a Squid backend server. However, some sites, for example, such as http://www.nytimes.com/2014/08/03/magazine/the-kids-who-beat-autism.html break with redirect loops, namely because of 301 status codes.

How can this be resolved?

Thank you!

tatsuhiro-t commented 9 years ago

Yeah, shrpx does not work with this site well. We are now concentrating on HTTP/2 proxy called nghttpx, which also supports SPDY proxy. https://github.com/tatsuhiro-t/nghttp2 I confirmed nghttpx works with this site.

nubela commented 9 years ago

Thanks, I'll be migrating from shrpx to nghttpx then.