How can I prevent Nginx from buffering the output of my uwsgi app? For my comet style application I'm using long polling and the requests are now buffered.
I tried to reduce the size of the buffers, but I'm not allowed to put uwsgi_buffer_size
and uwsgi_buffers
on 0. Also uwsgi_max_temp_file_size
does not work (eventhough the manual suggests that).
How can I do this?