1
akira 2017-09-23 01:27:10 +08:00 1
access_log 的 off 只影响本层。试试用 access_log if=condition 格式
map $status $loggable { abcd 0; 123456789 0; default 1; } access_log /var/log/nginx/access.log combined if=$loggable; |
2
fenglangjuxu 2017-09-23 06:53:29 +08:00 via iPhone
有个 nginx_log 插件,可以实现
|
3
lerry 2017-09-23 07:24:57 +08:00
location / {
if ($http_user_agent ~* (Chrome\/50\.0\.2661\.102|MSIE\ 9\.0) ) { access_log off; return 403; } } 我这样写是好使的,注意转义 |
4
ayiis 2017-09-23 10:43:47 +08:00
放在 location 里是没问题的,可能是正则没写好?
|