nginx 로그 필터 네트워크 파충류

nginx 일 지 를 분석 할 때 머리 가 아 픈 것 은 거미 파충류 의 흔적 이 많다 는 것 이다.
대부분의 거미 파충류 가 xx - bot 또는 xx - spider 라 는 것 을 감안 하여 다음 방법 은 파충류 에 게 따로 일 지 를 쓸 수 있다.
1
2
3
4
5 location / {     if   ($http_user_agent ~*  "bot|spider" ) {       access_log      / var /log/nginx/spider.access.log;     } }
일 지 를 아예 안 쓰 든 가.
1
2
3
4
5 location / {     if   ($http_user_agent ~*  "bot|spider" ) {       access_log off;     } }

좋은 웹페이지 즐겨찾기