Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Как не учитывать себя в a ccess-логах?
- To: Николай Кучумов <nginx-ru@xxxxxxxxx>
- Subject: Re: Как не учитывать себя в a ccess-логах?
- From: Евгений Девятых <devyatyh@xxxxxxxxx>
- Date: Thu, 31 Dec 2009 15:06:19 +0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:x-mailer:reply-to :x-priority:message-id:to:subject:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=S206Iy5Pu5pfl5yElQoTP8yJqyTcaWbwe6IXjuttzfY=; b=UcxylZqhzhijsvsSBrQp+fbAMkAQptrHfLFzsrQLt92VxZbJ1GANTF+BfrZNxRjDIx 2UGXwPGYTfYz6pG4h102pJ5D8x2+nfzRZ3X0KJi/W9AHwiOMIUw6q0VVD2KEm/rPpIw2 BFQD1aLn1/Kls3iTClGqHoLwZy8vduioF95uk=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:x-mailer:reply-to:x-priority:message-id:to:subject :in-reply-to:references:mime-version:content-type :content-transfer-encoding; b=py3RdkiYPJ31LrcLE9qzdixo5KTzTrauZtQoeZvwufZeS0I4AtgW1LUcxvDfbuZrAA +yW1b/EAiyE9sYdszy1N34MnCEIfMTot+OwbKPpAXwmTWVO+Mc0z7FXjbqXFRm3lIrpm ngrhCpCWwaHc269g7zdP8JX4ybwj1hFrHp/1k=
- In-reply-to: <88ba21d10912310134p201a6453qbb334ad18cba2dbe@xxxxxxxxxxxxxx>
- References: <88ba21d10912310134p201a6453qbb334ad18cba2dbe@xxxxxxxxxxxxxx>
Здравствуйте, Николай.
Вы писали 31 декабря 2009 г., 14:34:27:
>
|
Здравствуйте.
Я запустил у себя на машине wiki, и время от времени наполняю её.
Могу ли я как-нибудь сделать так, чтобы в access_log не писались мои запросы (127.0.0.1 = 190.170.1.1)?
Я попробовал сделать так:
if ($remote_addr ~ "^(127\.0\.0\.1|190\.170\.1\.1)")
{
access_log off;
}
Но NginX пишет: ""access_log" directive is not allowed here".
Может быть вы мне подскажете какой-нибудь способ не писать в лог мои локальные запросы?
Там ещё AWStats статистику считает с учётом моих локальных запросов, так что этим "одним выстрелом" я рассчитываю убить "двух зайцев".
|
Лучше awstats настройте
SkipHosts
Version : 1.0+ (5.6+ for REGEX syntax)
# Do not include access from clients that match following criteria.
# If your log file contains IP adresses in host field, you must enter here
# matching IP adresses criteria.
# If DNS lookup is already done in your log file, you must enter here hostname
# criteria, else enter ip address criteria.
# The opposite parameter of "SkipHosts" is "OnlyHosts".
# Note: Use space between each value.
# Note: You can use regular _expression_ values writing value with REGEX[value].
# Change : Effective for new updates only
# Example: "127.0.0.1 REGEX[^192\.168\.] REGEX[^10\.0\.0\.]"
# Example: "localhost REGEX[^.*\.localdomain$]"
# Default: ""
#
--
С уважением,
Евгений mailto:devyatyh@xxxxxxxxx
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|