Nginx:在访问日志中隐藏帖子请求

Nginx:在访问日志中隐藏帖子请求

如何在 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_methodPOST

相关内容