1
ryd994 2019-04-05 00:10:11 +08:00 via Android
你这个 URL 合法吗?
&是保留字符,用于分割 args |
2
z069 OP @ryd994 刚才看了一下,确实不全,实际是 /thumbnail.php?src=https://www.domain.com/pic/pic.png&w=280&h=210&a=&zc=1
|
3
ryd994 2019-04-05 00:31:56 +08:00 via Android
location 只匹配 path 部分,不匹配整个 URL
map $arg_src $log_filter { default 1; ~ .*\.(png)$ 0; } access_log 照抄原来的,官方 manual 里也能查到默认的。在最后加上 if=$log_filter 思路就是这样,剩下的 rtfm: http://nginx.org/en/docs/http/ngx_http_log_module.html http://nginx.org/en/docs/http/ngx_http_map_module.html |
4
z069 OP @ryd994 你好,感谢您的解答
按照您的提示,我在 http 中添加了 map $arg_src $log_filter { default 1; ~ .*\.(png)$ 0; } access_log /data/wwwlogs/domain.com.log combined if=$log_filter; 测试提示[emerg] invalid number of the map parameters 按照文档中的示例, 添加在同一位置的: map $status $loggable { ~^[403] 0; default 1; } access_log /data/wwwlogs/domain.com.log combined if=$loggable; 这个 nginx -t 后提示通过,麻烦看下,配置哪有问题吗? |