如何在 NGINX 访问日志中隐藏 POST 请求:
30/Aug/2018:11:03:31 .... method=POST request="POST /api/auth....
答案1
您需要nginx
按照以下说明将以下内容添加到您的配置中文档
map $request_method $loggable {
default 1;
POST 0;
}
access_log /path/to/access.log combined if=$loggable;
该if
参数启用条件记录。如果条件计算结果为“0”或空字符串,则不会记录请求。如果条件为“0”,则该指令map
设置$loggable
为 0$request_method
POST