1.9 nginx不记录指定文件类型的日志

# cd /usr/local/nginx/conf/nginx.conf 
内容:
server_names_hash_bucket_size 3526;
    server_names_hash_max_size 4096;
    log_format aming'$remote_addr(远程IP) $http_x_forwarded_for(代理IP) [$time_local]'(时间)
    '$host(域名) "$request_uri"(访问地址) $status'(状态码)
    '"$http_referer" "$http_user_agent"';
    sendfile on;
tcp_nopush on;
# cd /usr/local/nginx/conf/vhosts/
 index index.html index.htm index.php;
 root /data/www;
 access_log /tmp/accesstest.log      //访问日志生成放到/tmp/accesstest.log
location ~ .*admin\.php$ {
   auth_basic "wyclinux auth";
   auth_basic_user_file   /usr/local/nginx/conf/.htpasswd;
     include fastcgi_params;
     fastcgi_pass unix:/tmp/php-fcgi.sock;
     fastcgi_index index.php;
     fastcgi_param SCRIPT_FILENAME /data/www$fastcgi_script_name;
}
   location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css)$
{
  access_log off;      //不记录某些类型的文件
}
# /usr/local/nginx/sbin/nginx –t
# /usr/local/nginx/sbin/nginx -s reload


你可能感兴趣的:(1.9 nginx不记录指定文件类型的日志)