Nginx is a very fast asynchronous web server. This means that it handles all IO using non-blocking sockets rather than threads or processes, which allows it to scale to extremely large numbers of connected clients (on the order of 10,000 simultaneous clients).
Nginx support for WSGI applications (and TurboGears in particular) is still very much experimental, but the following patterns may work:
Todo
Need to test and document these options better if we’re going to keep them in the official documentation.