nginx 에서 특정 디렉토리에 지정 ip만 접속하고 나머지는 차단
location /admin/ {
allow 113.111.111.11; #허용 ip
allow 59.13.224.2; #허용 ip
deny all; # 그외 다 차단
# return 403;
}