Search code examples
node.jshttp-proxynode-http-proxy

http-proxy keeps returning 404


I'm trying to proxy calls to a REST API using http-proxy, but it keeps returning 404 codes.

This is an example call to my API: http://petrpavlik.apiary-mock.com/notes It returns some JSON data.

This is what my server code looks like:

var httpProxy = require('http-proxy');

var proxy = httpProxy.createServer({
  target:'http://petrpavlik.apiary-mock.com'
});

proxy.listen(8005);

proxy.on('error', function (err, req, res) {
  res.writeHead(500, {
    'Content-Type': 'text/plain'
  });

  res.end('Something went wrong. And we are reporting a custom error message.');
});

proxy.on('proxyRes', function (res) {
  console.log('RAW Response from the target', JSON.stringify(res.headers, true, 2));
});

This is what I get when I try to call the same request using my proxy.

Petrs-MacBook-Air-2:~ petr$ curl -v 127.0.0.1:8005/notes
* About to connect() to 127.0.0.1 port 8005 (#0)
*   Trying 127.0.0.1...
* Adding handle: conn: 0x7f977280fe00
* Adding handle: send: 0
* Adding handle: recv: 0
* Curl_addHandleToPipeline: length: 1
* - Conn 0 (0x7f977280fe00) send_pipe: 1, recv_pipe: 0
* Connected to 127.0.0.1 (127.0.0.1) port 8005 (#0)
> GET /notes HTTP/1.1
> User-Agent: curl/7.30.0
> Host: 127.0.0.1:8005
> Accept: */*
> 
< HTTP/1.1 404 Not Found
< cache-control: no-cache, no-store
< content-type: text/html; charset=utf-8
< date: Sat, 28 Jun 2014 09:40:29 GMT
* Server MochiWeb/1.0 (Any of you quaids got a smint?) is not blacklisted
< server: MochiWeb/1.0 (Any of you quaids got a smint?)
< content-length: 2960
< connection: Close
< 

I must be missing something obvious, but I'm really stuck on this one.


Solution

  • If you are trying to proxy the Apiary Mock API, I have done it this way:

    var apiProxy = httpProxy.createProxyServer();
    server.get("/api/v1", function (req, res) {
      delete req.headers.host;
      req.url = req.url.replace('/api/v1', '/');
      apiProxy.web(req, res, { target: 'http://private-XXXX.apiary-mock.com/' });
    });
    

    Now in my local app I request GET /api/v1/notes being proxied to http://private-XXXX.apiary-mock.com/notes.

    Make sure you delete req.headers.host, otherwise the target server would match the wrong host.