Nginx 역방향 에이전트 클 라 이언 트 IP 가 져 오기

1740 단어
프론트 엔 드 는 Nginx 를 프 록 시 서버 로 하고 백 엔 드 Real - server 로 프 록 시 합 니 다.X - Real - IP: 클 라 이언 트 IP 는 보통 $remote - addr X - Forward - for: 다단 계 프 록 시 ip 을 설정 합 니 다. (클 라 이언 트 ip, 1 급 프 록 시 ip 포함...) 보통 $proxy 를 설정 합 니 다.add_x_forwarded_for 도 $remote - addr 로 설정 할 수 있 습 니 다.
Real - server 는 아파 치:
nginx:
proxy_set_header Host $Host;
proxy_set_header X-Real-IP $remote_addr;
apache:
    :
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
   :
LogFormat "%{X-Real-IP}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined

Real - server 는 Nginx 입 니 다.
백 엔 드 nginx 는 컴 파일 설치 에 추가 해 야 합 니 다: - with - httprealip_module, 앞부분 필요 없어 도 돼 요.
  (    ):
        location / {
        proxy_pass  http://pma;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $Host;
        proxy_redirect     off;
        }
  (Real-Server):
        set_real_ip_from "192.168.1.154";
        real_ip_header X-Forwarded-For;
        real_ip_header X-Real-IP;
        real_ip_recursive on;

1 급 에이전트 만 있 기 때문에 사실 X - Forward - For 와 X - Real - IP 값 은 모두 같다.
좀 더 분명하게 말 해 봐.
만약 구조 가 nginx - > nginx (nginx 역방향 대리 에서 nginx) nginx 반대 라면:
proxy_set_header X-Real-IP $remote_addr;

nginx Real-Server:
set_real_ip_from "192.168.1.154";   // IP          IP
   ,        X-Real-IP           IP

         X-RealA-IP,        :
real_ip_header X-RealA-IP;    //       IP     

좋은 웹페이지 즐겨찾기