Вообщем настроил логи доступа у себя в апаче...
Хотел бы узнать что означает цифра
IP чей-то - - [01/Sep/2009:15:07:48 +0400] "GET / HTTP/1.1" 200 11805
Ответ:Вообще где про это можно почитать?
думаю http://www.cyberguru.ru/web/web-servers ... -logs.html поможет"GET - метод
/ - запрашиваемая дериктория
HTTP/1.1" - версия http
200 - код ответа сервера
11805 - длина запроса
Вопрос №2
Код: Выделить всё
%{User-agent} - тип браузера посетителя.
файл httpd.conf
файл httpd-vhosts.confLoadModule log_config_module modules/mod_log_config.so
...
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn
<IfModule log_config_module>
#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
#
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
#
CustomLog logs/access.log common
#
# If you prefer a logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#
#CustomLog logs/access.log combined
</IfModule>
...
если лог ведется только один (нет виртуальных хостов) то достаточно<VirtualHost *:80>
...
ErrorLog "logs/dummy-host.x-error.log"
CustomLog "logs/dummy-host.x-access.log" combined
</VirtualHost>
закомментировать
#CustomLog logs/access.log common
и раскомментировать
CustomLog logs/access.log combined