Solve the problem that the IP address obtained using nginx is 127.0.0.1

Solve the problem that the IP address obtained using nginx is 127.0.0.1

Get ip tool

import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;

import javax.servlet.http.HttpServletRequest;

/**
 * IP address *
 * @date March 6, 2020 12:57:02 PM
 */
@Slf4j
public class IPUtils {

    /**
     * Get IP address * 
     * If you use reverse proxy software such as Nginx, you cannot get the IP address through request.getRemoteAddr()* If you use multiple levels of reverse proxy, the value of X-Forwarded-For is not just one, but a string of IP addresses. The first valid IP string that is not unknown in X-Forwarded-For is the real IP address*/
    public static String getIpAddr(HttpServletRequest request) {
        String ip = null;
        try {
            ip = request.getHeader("x-forwarded-for");
            if (StringUtils.isEmpty(ip) || "unknown".equalsIgnoreCase(ip)) {
                ip = request.getHeader("Proxy-Client-IP");
            }
            if (StringUtils.isEmpty(ip) || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
                ip = request.getHeader("WL-Proxy-Client-IP");
            }
            if (StringUtils.isEmpty(ip) || "unknown".equalsIgnoreCase(ip)) {
                ip = request.getHeader("HTTP_CLIENT_IP");
            }
            if (StringUtils.isEmpty(ip) || "unknown".equalsIgnoreCase(ip)) {
                ip = request.getHeader("HTTP_X_FORWARDED_FOR");
            }
            if (StringUtils.isEmpty(ip) || "unknown".equalsIgnoreCase(ip)) {
                ip = request.getRemoteAddr();
            }
        } catch (Exception e) {
            log.error("IPUtils ERROR ", e);
        }
        
        //Using a proxy, get the first IP address if(StringUtils.isEmpty(ip) && ip.length() > 15) {
            if(ip.indexOf(",") > 0) {
                ip = ip.substring(0, ip.indexOf(","));
            }
        }
        
        return ip;
    }
    
}

If you use nginx, the IP you get will be 127.0.0.1

Add the following configuration to the proxy: proxy_set_header x-forwarded-for $remote_addr;

server {
        listen 80;
        server_name api.qimen.pro;
        # Server file upload size limit client_max_body_size 10M;
        location / {
            proxy_pass http://gymserver;
            proxy_set_header x-forwarded-for $remote_addr;
        }
    }

This is the end of this article about solving the problem of using nginx to obtain the IP address of 127.0.0.1. For more information about the problem of nginx obtaining the IP address, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to use Nginx to prevent IP addresses from being maliciously resolved
  • Example of configuring multiple SSL certificates for a single Nginx IP address

<<:  A detailed explanation of the subtle differences between Readonly and Disabled

>>:  MySQL not null constraint case explanation

Blog    

Recommend

Detailed explanation of anonymous slots and named slots in Vue

Table of contents 1. Anonymous slots 2. Named slo...

Why MySQL should avoid large transactions and how to solve them

What is a big deal? Transactions that run for a l...

Implementation of Docker deployment of Django+Mysql+Redis+Gunicorn+Nginx

I. Introduction Docker technology is very popular...

Detailed explanation of Angular dynamic components

Table of contents Usage scenarios How to achieve ...

Methods and techniques for designing an interesting website (picture)

Have you ever encountered a situation where we hav...

Detailed View of Hidden Columns in MySQL

Table of contents 1. Primary key exists 2. No pri...

Tutorial on installing MYSQL8.X on Centos

MySQL installation (4, 5, 6 can be omitted) State...

Summary of CSS front-end knowledge points (must read)

1. The concept of css: (Cascading Style Sheet) Ad...

How to query the latest transaction ID in MySQL

Written in front: Sometimes you may need to view ...

MySql Sql optimization tips sharing

One day I found that the execution speed of a SQL...

Summary of CSS counter and content

The content property was introduced as early as C...

How to install MySql in CentOS 8 and allow remote connections

Download and install. First check whether there i...

JavaScript function syntax explained

Table of contents 1. Ordinary functions 2. Arrow ...

How to use Vue3 asynchronous data loading component suspense

Table of contents Preface Creating Components Sum...