I'm running nginx with fastcgi, is that all I need to serve python apps also?
I'm running ubuntu with nginx with fastcgi, is that al开发者_如何学Pythonl I need to serve python apps also?
You'll probably also need flup to bridge wsgi and fcgi. You obviously need Python, and whatever libraries your app depends upon. Likely need a database and the appropriate connectors as well, but that should all be in the documentation of whatever project you're trying to host (or framework you're using to write with).
Short answer: almost.
精彩评论