Re: actual django stack

2008-09-28 Thread Graham Dumpleton
On Sep 28, 10:47 am, Jeremy Sandell <[EMAIL PROTECTED]> wrote: > On Sep 26, 1:25 pm, David Zhou <[EMAIL PROTECTED]> wrote: > > > > > I've also heard good things about WSGI -- though I haven't heavily   > > tested its stability compared to, say,mod_python. > > --- > > David Zhou > > [EMAIL

Re: actual django stack

2008-09-27 Thread Jeremy Sandell
On Sep 26, 1:25 pm, David Zhou <[EMAIL PROTECTED]> wrote: > > I've also heard good things about WSGI -- though I haven't heavily   > tested its stability compared to, say, mod_python. > --- > David Zhou > [EMAIL PROTECTED] FWIW, WSGI has thus far worked wonderfully for me, and using daemon mode

Re: actual django stack

2008-09-26 Thread David Zhou
On Sep 26, 2008, at 5:54 AM, Peter Bengtsson wrote: > On Sep 25, 8:41 pm, "Frédéric Sidler" <[EMAIL PROTECTED]> > wrote: >> What it the best Django stack today. >> >> In django doc, it says that apache with mod_python is the best >> solution in production. But in the same time I see that

Re: actual django stack

2008-09-26 Thread Peter Bengtsson
On Sep 25, 8:41 pm, "Frédéric Sidler" <[EMAIL PROTECTED]> wrote: > What it the best Django stack today. > > In django doc, it says that apache with mod_python is the best > solution in production. But in the same time I see that everyblock use > nginx (probably in mode fastcgi). > > Did you

Re: actual django stack

2008-09-25 Thread [EMAIL PROTECTED]
I'm using django on Amazon EC2. And Django does not serve any static files. Actually they are stored on S3 and we plan to use Amazon new CDN functionnalities for that. So I'm trying to find the best solution for serving dynamic files on instances with 2GB of RAM. These instances are running

Re: actual django stack

2008-09-25 Thread Marcelo Sanches
I use both, apache mod_python to server django code and nginx at port 80 to serve just media and static files. - Original Message - From: "Frédéric Sidler" <[EMAIL PROTECTED]> To: <django-users@googlegroups.com> Sent: Thursday, September 25, 2008 4:41 PM Subjec

Re: actual django stack

2008-09-25 Thread Norman Harman
Frédéric Sidler wrote: > What it the best Django stack today. > > In django doc, it says that apache with mod_python is the best > solution in production. But in the same time I see that everyblock use > nginx (probably in mode fastcgi). > > Did you some of you test different solution and can

Re: actual django stack

2008-09-25 Thread Jeff Anderson
Frédéric Sidler wrote: > What it the best Django stack today. > > In django doc, it says that apache with mod_python is the best > solution in production. But in the same time I see that everyblock use > nginx (probably in mode fastcgi). > > Did you some of you test different solution and can

actual django stack

2008-09-25 Thread Frédéric Sidler
What it the best Django stack today. In django doc, it says that apache with mod_python is the best solution in production. But in the same time I see that everyblock use nginx (probably in mode fastcgi). Did you some of you test different solution and can share some output here. Here are the