Cloudflare와 GCP LB를 통해서라도 Apache 로그에 원래 IP를 쓰는 방법

1289 단어 apachegcpcloudflare
아래 Cloudflare 문서를 따르십시오.
원래 게스트 IP 복원:mod cloudflare를 사용하여 게스트 IP 주소 로깅
https://support.cloudflare.com/hc/en-us/articles/200170786-Restoring-original-visitor-IPs-Logging-visitor-IP-addresses-with-mod-cloudflare-
그런 다음 CloudFlareRemoteIPTrustedProxy35.191.0.0/16130.211.0.0/22를 추가합니다.
<IfModule cloudflare_module>
    CloudFlareRemoteIPHeader X-Forwarded-For
    CloudFlareRemoteIPTrustedProxy 35.191.0.0/16
    CloudFlareRemoteIPTrustedProxy 130.211.0.0/22
    CloudFlareRemoteIPTrustedProxy [your load balancer’s IP]
</IfModule>
httpd를 다시 시작하면 아파치 접근 로그에 원본 방문자 IP를 볼 수 있습니다.
참조용: 외부 HTTP 로드 밸런싱 소스 IP 주소의 GCP 문서
https://cloud.google.com/load-balancing/docs/https#source_ip_addresses

좋은 웹페이지 즐겨찾기