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
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