I am 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
.
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.