What is the point of uWSGI?

Okay, I think I get this now. Why can’t nginx directly call my Flask application? Because nginx doesn’t support the WSGI spec. Technically nginx could implement the WSGI spec if they wanted, they just haven’t. That being the case, we need a web server that does implement the spec, which is what the uWSGI server … Read more

uwsgi invalid request block size

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 … Read more

tech