Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
выборочное логирование за просов
Привет
хочу писать лог всех операций по DAV
====
access_log off;
location / {
if ($request_method !~ ^(GET|HEAD)$ ) {
access_log /var/log/nginx/dav_access.log dav;
}
...
}
====
в логе тишина, хотя идут PUT и MOVE
если отрицание убрать
====
access_log off;
location / {
if ($request_method ~ ^(GET|HEAD)$) {
access_log /var/log/nginx/dav_access.log dav;
}
...
}
====
то логируются *только* GET и HEAD запросы
nginx -V
nginx version: nginx/0.8.49
built by gcc 4.1.2 20080704 (Red Hat 4.1.2-48)
configure arguments: --prefix=/usr/local
--conf-path=/usr/local/etc/nginx/nginx.conf
--error-log-path=/var/log/nginx/error.log --pid-path=/var/run
--lock-path=/var/lock --user=www --group=www
--http-client-body-temp-path=/var/lib/nginx/tmp/client_body
--http-proxy-temp-path=/var/lib/nginx/tmp/proxy
--http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi
--with-http_stub_status_module --with-http_sub_module
--with-http_dav_module
--
WBR
Igor Homyakov
System Administrator, Embria
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|