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

时间:2022-03-12 01:17:26

1、指定记录文件日志记录的内容。
vim /usr/local/nginx/conf/nginx.conf
如下部分:
log_format dd '$remote_addr $http_x_forwarded_for [$time_local]'
'$host "$request_uri" $status'
'"$http_referer" "$http_user_agent"';
其中dd是指日志格式的名字,可修改。
2、在虚拟主机配置文件中,指定访问日志的所在位置及记录格式。
#指定日志存放位置及指定格式
access_log /tmp/access.log dd;
检查是否有错:/usr/local/nginx/sbin/nginx -t
重启服务 : service nginx restart
或者
/etc/init.d/nginx reload重新载入配置文件
3、某些类型日志文件不记录日志
vim /usr/local/nginx/conf/vhosts/dd.conf
#不记录指定文件类型的日志
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
access_log off;
}
location ~ (static|cache)
{
access_log off;
}
检查重新载入nginx配置文件