What is the difference between mod_wsgi and uwsgi?

There is a mod_wsgi module in the Apache and uwsgi modules in Nginx. There is also a wsgi protocol and a uwsgi protocol.

I have the following questions.

  • Can mod_wsgi and uwsgi use different implementations to provide WSGI features to Python web developer?
  • Is there mod_wsgi for Nginx?
  • Is uwsgi an entry point application(environ, start_response)for developers?
  • Is uwsgi also a separate protocol besides wsgi? In this case, how is the uwsgi protocol different from the wsgi protocol?
+3
source share
1 answer
  • These are just two different ways to run WSGI applications.
  • Have you tried the search engine for mod_wsgi nginx?
  • , wsgi, , wsgi.
  • , , uwsgi Nginx. mod_wsgi Python Nginx, uwsgi .
+2

All Articles