uwsgi invalid request block size

Kartik Rokde picture Kartik Rokde · Apr 8, 2013 · Viewed 75.1k times · Source

I'm running uwsgi in emperor mode

uwsgi --emperor /path/to/vassals/ --buffer-size=32768

and getting this error

invalid request block size: 21327 (max 4096)...skip

What to do?? I also tried -b 32768

Answer

Palasaty picture Palasaty · Jan 17, 2014

I aslo ran into same issue while following some tutorial. The problem was that I set the option socket = 0.0.0.0:8000 instead of http = 0.0.0.0:8000. socket option intended to be used with some third-party router (nginx for instance), while when http option is set uwsgi can accept incoming HTTP requests and route them by itself.