By ok91
I have a MEAN Stack application deployed on a server and I am using Nginx as proxy server to handle the request and redirect to application’s particular port.
I wrote a short script in node.js which fetches IP and location of the users visiting my website. I can see the searched queries and usage of my API from external users and are same as those I can see via Google Analytics.
But I am also getting a strange hit to my server (and API links) from the IP address “::ffff:127.0.0.1”. Why is that? Is that because of Nginx? How can I resolve this? Is this even an actual user or what?
Someone suggested that it might because of the Monitoring tool installed on your server. Can this be the reason as well or its something else?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
::ffff:127.0.0.1 is the IPv6 version of an IPv4 IP address, just to clarify.
What does your current NGINX server block look like? (the one that has the proxy configuration)
I solved it with:
set $remote_addr_ipv4 $remote_addr;
if ($remote_addr ~ ^\:\:ffff\:(.+)$) {
set $remote_addr_ipv4 $1;
}
set $proxy_add_x_forwarded_for_ipv4 $proxy_add_x_forwarded_for;
if ($proxy_add_x_forwarded_for ~ ^\:\:ffff\:(.+)$) {
set $proxy_add_x_forwarded_for_ipv4 $1;
}
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for_ipv4;
proxy_set_header X-Real-IP $remote_addr_ipv4;
Regards.
I have this problem also. The only IP that shows up for me is ::ffff:127.0.0.1 with no exceptions. I pasted in your code but there is no change.
Any ideas how to solve? My nginx config is otherwise very basic, having only the absolute essentials.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.