Closed westoque closed 8 years ago
I'm experiencing this too. Does anyone have any pointers as to how we could fix this up?
@timting Actually, my problem before was proxying from https -> http. If this is also true with your setup. Then you can solve this by doing forcing the request to use http.
env["HTTP_X_FORWARDED_PROTO"] = "http"
env["HTTP_X_FORWARDED_PORT"] = "80"
I'm having this problem as well, and it's not an issue with the HTTP_X_FORWARDED_PROTO. Anyone come up with any ideas? @timting?
Just noticed this appears to be a duplicate of #50
Yup. Closing.
Right now, it just passes through, although Rack::Lint shows a warning. There is a streaming api however, and we should use it or suggest to use it when this happens.
Using:
rack-proxy - 0.5.17
Reproduce:
Transfer-Encoding: chunked
header.What should happen:
We should get the complete response rendered in browser.