CDN이나, proxy server를 통해서 접속될때, CDN IP나, proxy server의 IP가 찍힙니다.
해당 IP의 실제 IP를 확인하는 방법입니다.

 

 0. How to check in php.

<?
        $ip =  $_SERVER['REMOTE_ADDR'];

        echo $ip;

?>

 

 

1. nginx.conf set

 

"http {" In the following area

 

set_real_ip_from 0.0.0.0/0;

real_ip_recursive on;

 

}

 

'Linux' 카테고리의 다른 글

nginx modsecurity install  (2) 2015.09.12
nginx ssl setup  (0) 2015.09.10
리눅스에서 라인수를 알고 싶을때  (0) 2015.09.10
iconv 설치 configure: error: Please reinstall the iconv library  (0) 2015.09.01
php 간단한 메일 테스트  (0) 2015.08.31
Posted by pysany
,