Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to forward request IP from NGINX to node.js application?

I have NGINX running as reverse proxy which forwards all http and https traffic to my node.js application, which listens to localhost:port

However the issue I have is that the node.js application sees all incoming requests as coming from ::ffff:127.0.0.1

How can I change the NGINX config such that the real IP will be passed through and forwarded to the node.js application?

server {
    listen 80;
    listen [::]:80;
    listen 443;
    listen [::]:443;

    root /var/www/example.com/html;
    index index.html index.htm;

    server_name example.com;

location / {
proxy_set_header X-Real-IP $remote_addr;
    proxy_pass http://localhost:myport;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection 'upgrade';
    proxy_set_header Host $host;
    proxy_cache_bypass $http_upgrade;
}

 # Requests for socket.io are passed on to Node on port x
  location ~* \.io {
  proxy_set_header X-Real-IP   $remote_addr;
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  proxy_set_header Host $http_host;
  proxy_set_header X-NginX-Proxy true;

  proxy_pass http://localhost:myport;
  proxy_redirect off;

  proxy_http_version 1.1;
  proxy_set_header Upgrade $http_upgrade;
  proxy_set_header Connection "upgrade";
}


}

Edit: The express.js/node.js application processes req.ip and has app.enable('trust proxy'); at startup

like image 502
codebird456 Avatar asked Apr 08 '19 09:04

codebird456


2 Answers

Express.js official site has this guide. Instructions:

  1. app.set('trust proxy', true) in js.
  2. proxy_set_header X-Forwarded-For $remote_addr in nginx.conf
  3. You can now read-off the client IP address from req.ip property
like image 156
hackape Avatar answered Oct 26 '22 02:10

hackape


This solves it taking into consideration above NGINX config.

var ip = req.headers['x-real-ip'] || req.connection.remoteAddress;
like image 41
codebird456 Avatar answered Oct 26 '22 04:10

codebird456