nginx files upload streaming with proxy_pass

前端 未结 3 1190
半阙折子戏
半阙折子戏 2020-12-13 04:02

I configured nginx as reverse proxy to my node.js application for file uploads with proxy_pass directive. It works, but my problem is that nginx waits for the whole file bod

3条回答
  •  囚心锁ツ
    2020-12-13 04:35

    I suspect that:

    proxy_buffering off;
    

    is what you need, see http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffering

提交回复
热议问题