I am using the node as backend server and using the nginx as a reverse proxy server.
I want to store the user ip address on my db. For that I searched on the blogs and forum and found public-ip npm module
After that I tested on server and found that this module will return my EC2 instance public ip instead of user public IP.
After finding this issue on internet and again found that this may be due to using the reverse proxy.
For that I need to add the this code under the location block which I already did.
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
And need to add this code on my express server
app.set('trust proxy', true)
And call this to grab the IP
req.header('x-forwarded-for') or req.connection.remoteAddress
Update This is my nginx config
location / {
include /etc/nginx/proxy_params;
proxy_pass http://127.0.0.1:3001;
}
My proxy_params is
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_redirect off;
proxy_cache_bypass $http_upgrade;
I need to ask how I can use this inside some function or Any API calls. Is it surely return me the client IP?
Any help or suggestion is really appreciated. Thanks in advance.
This should do it for you.
nginx config:
Express app:
EDIT: I made some error in the nginx config, fixed it.