Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Проблема с отдачей файла нулевого размера
On Thu, Dec 11, 2008 at 04:20:03PM +0300, Монашёв Михаил wrote:
> Я попробовал запросить его телентом и nginx закрыл соединение:
>
> telnet xx.xx.xx.xx 80
> Trying xx.xx.xx.xx...
> Connected to xx.xx.xx.xx.
> Escape character is '^]'.
> GET /i/users/81/94/299481/59/9147459/0.mp3 HTTP/1.0
> X-country: RU
> Host: a2.beon.ru
>
> Connection closed by foreign host.
Патч. Ошибка появилась в 0.7.25.
--
Игорь Сысоев
http://sysoev.ru
Index: src/http/modules/ngx_http_static_module.c
===================================================================
--- src/http/modules/ngx_http_static_module.c (revision 1719)
+++ src/http/modules/ngx_http_static_module.c (working copy)
@@ -217,7 +217,7 @@
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
- if (of.size == 0) {
+ if (r != r->main && of.size == 0) {
return ngx_http_send_header(r);
}
|