ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Вопрос по error_log


  • To: <nginx-ru@xxxxxxxxx>
  • Subject: Вопрос по error_log
  • From: Денис Гринев <denis.grinev@xxxxxxxxx>
  • Date: Fri, 28 Mar 2008 15:22:13 +0300
  • Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:from:to:subject:date:message-id:mime-version:content-type:x-mailer:thread-index:x-mimeole; bh=Z/WGMkSmvGymjxA3nfsrs9eK69+Il5G+OHFz9NXr7Xk=; b=fH9N92+dkwZrEEaHTCyOtGPFVbTV+bjp8CbNHMt/eAHKoexjD+xZ92YOoPmpE1I8DC2hoJ4s4AuQ1qKo/x4yuL/bTV0G1dDiHnSUayO9p8rzv2Yg/tYPecHhUoOQ/m+JyQkqmZ2r7VVo4auSTe5XIDfQly/4ViyLLy+18CNDVxo=
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=from:to:subject:date:message-id:mime-version:content-type:x-mailer:thread-index:x-mimeole; b=q4Ws0yyZ8wk+RivsvCyL6vdQxs+yBXLc6LuQGf79M+xw2dfPJgtty2wDRdn+TaSslzWrJq3lFyzJz7721ozhCeeDzMZVET9eiN129rdoBKzoN78iwkZ4TpuEGZqZcMJ/9iKZkQ/ryd8U/XXF534kW4ofjk8o16m07iu8BaTtmiM=
  • Thread-index: AciQzloZ9u6+JPwlSH6vY+FSXR2D2g==

Добрый день.

 

В error_log постоянно пишется что то типа такого:

2008/03/28 15:17:14 [info] 1463#0: *55221 client 122.162.166.114 closed keepalive connection (104: Connection reset by peer)

2008/03/28 15:17:21 [info] 1464#0: *55719 client 79.138.231.43 closed keepalive connection

2008/03/28 15:17:21 [info] 1463#0: *55186 client 88.140.144.227 closed keepalive connection (104: Connection reset by peer)

2008/03/28 15:17:21 [info] 1463#0: *55188 client 88.140.144.227 closed keepalive connection (104: Connection reset by peer)

2008/03/28 15:17:27 [info] 1463#0: *55237 client 60.53.235.61 closed keepalive connection

2008/03/28 15:17:27 [info] 1466#0: *54870 client 81.33.149.158 closed keepalive connection

2008/03/28 15:17:27 [info] 1463#0: *55212 client 81.33.149.158 closed keepalive connection

2008/03/28 15:17:29 [info] 1463#0: *55268 client 69.124.230.221 closed keepalive connection (104: Connection reset by peer)

2008/03/28 15:17:35 [info] 1463#0: *55265 client 125.60.241.82 closed keepalive connection (104: Connection reset by peer)

2008/03/28 15:17:36 [info] 1464#0: *55716 client 125.160.35.75 closed keepalive connection

2008/03/28 15:17:36 [info] 1464#0: *55699 client 125.160.35.75 closed keepalive connection

2008/03/28 15:17:42 [info] 1463#0: *55029 client 124.82.32.110 closed keepalive connection (104: Connection reset by peer)

2008/03/28 15:17:47 [info] 1466#0: *55375 client 207.126.196.16 closed keepalive connection (104: Connection reset by peer)

2008/03/28 15:17:58 [info] 1465#0: *56039 client 71.227.128.221 closed keepalive connection

2008/03/28 15:17:59 [info] 1465#0: *55811 client 58.69.48.232 closed keepalive connection (104: Connection reset by peer)

2008/03/28 15:17:59 [info] 1465#0: *55846 client 58.69.48.232 closed keepalive connection (104: Connection reset by peer)

2008/03/28 15:17:59 [info] 1465#0: *55936 client closed prematurely connection while reading client request line, client: 165.21.154.116, server: teet.net

2008/03/28 15:18:02 [info] 1465#0: *55875 client 89.254.135.137 closed keepalive connection

 

Это все нормально, так и должно быть? Или я как-то не так настроил nginx?

 

Операционная система Linux Gentoo

Вот конфиг nginx-0.6.29:

 

user nginx nginx;

worker_processes  4;

 

events {

    worker_connections  4096;

    use epoll;

}

 

http {

    include       mime.types;

    default_type  application/octet-stream;

 

    log_format  main  '$remote_addr - $remote_user [$time_local] $request '

                      '"$status" $body_bytes_sent "$http_referer" '

                      '"$http_user_agent" "$http_x_forwarded_for"';

 

    client_header_timeout  3m;

    client_body_timeout    3m;

    send_timeout           3m;

 

    client_header_buffer_size    1k;

    large_client_header_buffers  4 4k;

 

    gzip on;

    gzip_min_length 500;

    gzip_buffers    4 8k;

    gzip_types      text/plain text/html application/x-_javascript_ text/css;

 

    output_buffers   1 32k;

    postpone_output  1460;

 

    sendfile         on;

    tcp_nopush       on;

    tcp_nodelay      on;

 

    keepalive_timeout  75 20;

 

    index index.php;

 

    server {

        listen          xxx;

        server_name     xxx.net;

 

        access_log      /projects/xxx.net/logs/access_log main;

        error_log       /projects/xxx.net/logs/error_log info;

 

        root /projects/xxx.net/htdocs;

 

и т.д. тут уже Вирт хосты

 

Спасибо.

 

С уважением,

Денис

 



 




Copyright © Lexa Software, 1996-2009.