Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
read() статики без двух бай т - nginx-0.5.35/cygwin-2003Server-R2
- To: nginx-ru@xxxxxxxxx
- Subject: read() статики без двух бай т - nginx-0.5.35/cygwin-2003Server-R2
- From: Sergey Shepelev <temotor@xxxxxxxxx>
- Date: Tue, 22 Apr 2008 14:09:03 +0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; bh=WCOmeJ5vxzB/fvNchJTZJHb+ut4UM/h97UxiQ8hmyY4=; b=vfvqiiRKpAW2qSx3N2iFpuZdf/xRbspzl0fgOEfzc4sugDcuSiGNGIyyjCtnYVpDPr3QpUQ4x67kEVMC42Vo1bAl2F6dyme7eXUGr0pF7sP5c70Vg2LUsPXyK5lY7x4STItrl6YjNJuWJCch8H9Z/TSXEzAnho/RXuzUlIbFv2Q=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; b=pw6owfWbow7slHWJpY1/eq7MQzKy3NDz9ySYBD+lQdLwJLF+emyHiSsFXlUasDEVpE/m+v/9O2/wSt1IC25rWvwMtUuBnzieQWFImyKTgk42gg4FhOGnJWeIPV74LxbF+kh1t1jWaUtmnARSrbkEmF0FP5s6IrBjFqKTSuUUZZI=
При запросе статики, nginx долго думает и ничего не происходит.
Файлик, само собой, на месте. Действительно, 28 байт.
Может кто-нибудь сталкивался?
2008/04/22 11:43:51 [alert] 12184#0: *5814 read() reads only 26 of 28
from file while sending response to client, client: 127.0.0.1, server:
чч.ччч.чч, request: "GET /robot.txt HTTP/1.1", host: "чч.ччч.чч"
Сайт:
location = /robot.txt {
rewrite ^/robot.txt /sf/robot.txt break;
}
location /sf {
root /cygdrive/d/Inetpub/ччччч;
}
Сервер:
worker_processes 2;
error_log logs/error.log warn;
events {
worker_connections 64;
}
http {
include conf/mime.types;
default_type text/html;
access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65 50;
gzip off;
proxy_buffering off;
}
|