uwsgi invalid request block size

后端 未结 7 1295
陌清茗
陌清茗 2020-12-12 11:09

I\'m running uwsgi in emperor mode

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

and getting this error

invalid re         


        
7条回答
  •  [愿得一人]
    2020-12-12 11:45

    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.

提交回复
热议问题