What is the best system to run django on?

django

Solution

I recommend:

- Nginx to serve static content, and proxy requests to Apache

- Apache + mod_wsgi to run Django

- PostgreSQL as a database

- Debian/Ubuntu, they have great python packages

Here is a deployment guide with all these.

Problem

What is the best system to run django on, operating system, database, web server etc considering robustness, simplicity, maintence cost, maintence reliability, pricing, upgrades for the application and upgrade of the django and other system component?

Original source

Related problems