I created a RESTful application in Python. I'm now trying to know what kind of server I should use to deploy the application. Currently I'm looking at Gunicorn, which is a WSGI server. But I often hear about this popular web-server Apache as well.
So my questions are:
WSGI is the standard interface for running Python web server applications. Python frameworks already implement this standard so you don't need to worry about this. There is no point in using apache if your application is written in Python.