Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Не работает access log off;
- To: nginx-ru@xxxxxxxxx
- Subject: Не работает access log off;
- From: "nikosid" <nginx-forum@xxxxxxxx>
- Date: Wed, 07 Sep 2011 06:26:42 -0400
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mickey.jlkhosting.com; s=x; h=Date:Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To; bh=EjViicWj04pOcLFrQP1woYXycrmu54bxDjANFQcJlyQ=; b=SUN8w1713GlRdiMG/7nz5jPMEfetV+k1/gbf66BwxSpMtsrgbo1GfMuHz/jMTo9apYQ6k1R0jfrKbDazpXpbcXTHJ5EbkOclxaOPBmgsclUhCNLufs0meehQLOs8Pljg;
Подскажите почему не работает access_log off
в локации? Если пишу в секции server, то
работает, но я хочу отключить логи
только для определённых файлов. Вот мой
конфиг:
server {
listen 80;
server_name .site.com.ua;
access_log /var/log/nginx/site.com.ua_access.log;
error_log /var/log/nginx/site.com.ua_error.log;
root /var/www/citysites/site.com.ua/htdocs;
index index.html index.htm index.php;
if ($host = 'www.site.com.ua' ) {
rewrite ^/(.*)$ http://site.com.ua/$1 permanent;
}
location ~* \.(js|jpeg|jpg|gif|png|swf)$ {
access_log off;
expires max;
}
location / {
try_files $uri $uri/ /index.php;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,214943,214943#msg-214943
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|