Nginx 2줄 설정으로 접속자의 IP주소 보여주기
(ecalamia.com)Show My IP 를 내 서버에 구현하기
location /ip {
default_type text/plain;
return 200 $remote_addr;
}
Show My IP 를 내 서버에 구현하기
location /ip {
default_type text/plain;
return 200 $remote_addr;
}