How to run:
- make run
WSGI is not a server it is just an interface specification by which server and application communicate (PEP 3333).
WSGI apps need to implement:
server <-> WSGI interface <-> application
- Client make a request.
- Request is passed to application.
- Response is send back to the client.