Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Proxy error handling
On Thu, Feb 28, 2008 at 05:48:10PM +0300, Igor Shergin wrote:
> - rewrite ^/test3(.*)$ /3.jpg;
> - rewrite ^/test2(.*)$ /2.jpg;
> - rewrite ^/test1(.*)$ /1.jpg;
> - return 200;
>
> + rewrite ^/test3(.*)$ /3.jpg break;
> + rewrite ^/test2(.*)$ /2.jpg break;
> + rewrite ^ /1.jpg break;
>
> Теперь выходит так:
>
> igors@core0% telnet proxytest 80
> Trying...
> Connected to proxytest.
> Escape character is '^]'.
> GET /q HTTP/1.1
> Host: proxytest
> User-Agent: Test
>
> Connection closed by foreign host.
>
> Воспроизводится и на хосте с 0.5.33.
Прилагаемый патч должен решить проблему.
--
Игорь Сысоев
http://sysoev.ru
Index: src/http/ngx_http_core_module.c
===================================================================
--- src/http/ngx_http_core_module.c (revision 1223)
+++ src/http/ngx_http_core_module.c (working copy)
@@ -1924,6 +1924,8 @@
cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);
r->phase_handler = cmcf->phase_engine.location_rewrite_index;
+ r->content_handler = NULL;
+
ngx_http_core_run_phases(r);
return NGX_DONE;
|