fix #656
This commit is contained in:
benoitc 2013-12-11 09:32:31 +01:00
parent d0c30a1992
commit 047ef65afc

View File

@ -83,10 +83,7 @@ To turn off buffering, you only need to add ``proxy_buffering off;`` to your
proxy_redirect off;
proxy_buffering off;
if (!-f $request_filename) {
proxy_pass http://app_server;
break;
}
proxy_pass http://app_server;
}
...