Cannot remove Content Length header

Luc Juggery luc.juggery at gmail.com
Sat Sep 24 13:06:32 UTC 2011


Hello,

I'm testing it from a browser and with curl as well and I got the same.
When I bypass nginx the response is correct. When I request from nginx, the lenght is added at the beginning and 0 at the end of the json I would expect.

--
Luc

Le Sep 24, 2011 à 13:49, Richard Kearsley <Richard.Kearsley at m247.com> a écrit :

> How are you testing it?
> That looks like results I saw using telnet but those numbers do not appear with a http client such as curl
> 
> 
> On 24 Sep 2011, at 12:43, "Luc Juggery" <luc.juggery at gmail.com> wrote:
> 
>> Hello,
>> 
>> I'm using Nginx as a front end to my node.js application, nginx proxying https request to my app.
>> When the browser gets the response back, instead of pure json ({"error":"query error","message":"Parameter(s) missing: user,password"}), I receive something like:
>> 
>> 47
>> {"error":"query error","message":"Parameter(s) missing: user,password"}
>> 0
>> 
>> I use 'more_clear_headers' module but do not have any luck.
>> 
>> This is the config I use:
>> 
>> server {
>>     listen      443;
>>     server_name my.server.com;
>>     ssl                 on;
>>     ssl_certificate    certificate.pem;
>>     ssl_certificate_key privatekey.pem;
>> 
>>     keepalive_timeout 70;
>> 
>>     location / {
>>       more_clear_headers 'Content-Length';   # Does not work as I would expect
>>       proxy_pass https://localhost:8443;
>>       proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
>>       proxy_set_header Host $http_host;
>>       proxy_buffering off;
>>       proxy_buffers 8 8k;
>>     } 
>> }
>> 
>> Would you have any idea ?
>> Thanks a lot for your help,
>> 
>> -- 
>> Luc
> 
>> _______________________________________________
>> nginx mailing list
>> nginx at nginx.org
>> http://mailman.nginx.org/mailman/listinfo/nginx
> 
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20110924/890524cf/attachment.html>


More information about the nginx mailing list