Purpose
부적절한 웹 크롤링을 차단
더 많은 리스트들은 악성 봇 리스트를 검색하여 환경에 맞게 수정
주요 사이트 검색 로봇 User-Agent
naver: Yeti
daum: Daum
google: Googlebot
nginx.conf 에 내용 추가
목적에 맞게 http_user_agent에 내용을 추가한다.
server {
## 중략
if ($http_user_agent ~* (^MJ12bot|^MJ12bot/v1.4.5|SemrushBot|SemrushBot-SA|DomainCrawler|MegaIndex.ru|AlphaBot) ) { return 403; }
location / {
## 중략
}
}
'WEB > Nginx' 카테고리의 다른 글
[Nginx]proxy_pass 설정 - 여러 서비스에 도메인 설정하기 (0) | 2023.01.11 |
---|---|
[Nginx]X-Forwarded-For(XFF) 설정 (0) | 2022.07.02 |
[Nginx]Customizing 301 pages to hide nginx information (0) | 2022.05.05 |
[Nginx]응답 헤더에서 Nginx 정보 제거 - remove response header server (0) | 2022.05.05 |
[Nginx]파일업로드 크기 제한 - client_max_body_size (0) | 2022.05.05 |