I use node.js behind nginx.The node.js app uses http-proxy.
Basically, the request gets to nginx and is then proxied to the node app:
- if static files are requested, the node.js app serves them
- if non static files are requested, the node.js app proxyies the request to a second node.js app (using http-proxy npm).
The second case works perfectly when nginx is not in the picture. When nginx is added, the response is quite strange: it's surrounded with strange stuff:
"4c\r\n{ json stuff }\r\n0"
instead of
{ json stuff }
To summarize:
(without nginx): request for dynamic content -> node.js -> proxy to another node.js app -> response sent back to the user is correct: { json stuff }
(with nginx): request for dynamic content -> node.js -> proxy to another node.js app -> response sent back to the user is not correct: "4c\r\n{ json stuff }\r\n0"
I still don't understand what's going on here... any idea ?
UPDATE
Hmmm.... seems like it's linked to nginx adding additional header to the request...
My nginx conf is:
upstream my_sock {
server unix:/tmp/test.sock
fail_timeout=0;
}
server {
listen 8099;
client_max_body_size 4G;
server_name localhost;
keepalive_timeout 5;
location / {
proxy_pass http://my_sock;
proxy_redirect off;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
}
}
Any idea how to remove those additional headers ?
UPDATE 2
the 4c added seems to be the length of the response I expect (json stuff). I then added:
proxy_set_header Content-Length '';
in nginx conf but nothing changed... I still have the 4c displayed... Arg...