>  기사  >  운영 및 유지보수  >  Nginx 리버스 프록시 이후 클라이언트의 실제 IP 주소를 얻을 수 없는 문제를 해결하는 방법

Nginx 리버스 프록시 이후 클라이언트의 실제 IP 주소를 얻을 수 없는 문제를 해결하는 방법

PHPz
PHPz앞으로
2023-05-14 09:58:051781검색

Nginx 프록시 전달 서비스를 사용할 때 클라이언트의 실제 IP 주소를 얻을 수 없으므로 클라이언트의 지리적 위치 및 기타 정보를 얻을 수 없다는 것을 알게 됩니다.

1. 원본 구성 파일은 다음과 같습니다.

worker_processes  1;

events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    
    keepalive_timeout  65;

    server {
        listen       80;
        server_name  localhost;

        location / {
            root   html;
            index  index.html index.htm;
        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }

}

2. 전달을 구성한 후

worker_processes  1;

events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    
    keepalive_timeout  65;

    server {
        listen       80;
        server_name  localhost;

        location / {
            root   html;
            index  index.html index.htm;
        }
        
        # 代理转发
        location /api/{
            proxy_set_header Host $http_host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header REMOTE-HOST $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header Public-Network-URL http://$http_host$request_uri;
            proxy_pass http://localhost:8080/;
        }
        
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }

}

이렇게 하면 클라이언트의 헤더 정보를 함께 전달하여 사용자의 실제 IP 주소를 얻을 수 있습니다.

위 내용은 Nginx 리버스 프록시 이후 클라이언트의 실제 IP 주소를 얻을 수 없는 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 yisu.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제