티스토리 뷰

반응형

Nginx IP주소로 접속시 차단하는 방법

# default.conf 파일 생성
$ vi /etc/nginx/conf.d/default.conf

server {
  listen 80 default_server;
  server_name _;
  return 444;
}

:wq!

# nginx 테스트
$ nginx -t
nginx: [warn] conflicting server name "_" on 0.0.0.0:80, ignored
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

# nginx 재구동
$ systemctl restart nginx.service

아이피 입력 후 적용 화면

 

끗!@#@#%@#$%!#$%

반응형