What is the point of uWSGI?

前端 未结 4 1941
后悔当初
后悔当初 2020-12-22 18:39

I\'m looking at the WSGI specification and I\'m trying to figure out how servers like uWSGI fit into the picture. I understand the point of the WSGI spec is to separate web

4条回答
  •  独厮守ぢ
    2020-12-22 19:14

    A traditional web server does not understand or have any way to run Python applications. That's why WSGI server come in. On the other hand Nginx supports reverse proxy to handle requests and pass back responses for Python WSGI servers.

    This link might help you: https://www.fullstackpython.com/wsgi-servers.html

提交回复
热议问题