码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 日志过滤网络爬虫访问日志

时间:2014-08-15 10:51:29      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:nginx spider

nginx里面有很多的爬虫日志,会影响到后期的数据分析,所以一般会去掉。

 nginx排除配置:

location / {
                          #去掉爬虫 Start
                          if ($http_user_agent ~* "bot|spider") {
                                 access_log off;
                           }
                          #去掉爬虫 end
                          proxy_pass              http://cdel_jxjy;
                          ......
  }

如果特别想要爬虫日志,也可以讲爬虫日志放到指定的文件中

location / {
   if ($http_user_agent ~* "bot|spider") {
     access_log      /var/log/nginx/spider.access.log;
   }
   ......
}


本文出自 “屌丝程序员的逆袭” 博客,请务必保留此出处http://cdelliqi.blog.51cto.com/9028667/1540300

nginx 日志过滤网络爬虫访问日志,布布扣,bubuko.com

nginx 日志过滤网络爬虫访问日志

标签:nginx spider

原文地址:http://cdelliqi.blog.51cto.com/9028667/1540300

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!