Blankman
Blankman

Reputation: 266988

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 all I need to serve python apps also?

Upvotes: 1

Views: 138

Answers (1)

Xiong Chiamiov
Xiong Chiamiov

Reputation: 13694

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.

Upvotes: 1

Related Questions