Re: mod_wsgi or mod_fcgi

2011-02-25 Thread km
yes nginx+uwsgi seems to be the best combination for django. KM On Fri, Feb 25, 2011 at 5:36 AM, Eugene MechanisM < eugene.mechan...@gmail.com> wrote: > > I used this for several months, and encountered all kinds of horrible > memory > > allocation problems, crashes, etc etc. > it's can be posiibl

Re: mod_wsgi or mod_fcgi

2011-02-24 Thread Eugene MechanisM
> I used this for several months, and encountered all kinds of horrible memory > allocation problems, crashes, etc etc. it's can be posiible with any server software if this server is bad configured. I'll never use apache or cherokee or lighttpd, coz nginx faster and better. -- You received this

Re: mod_wsgi or mod_fcgi

2011-02-24 Thread Cal Leeming [Simplicity Media Ltd]
Yeah, don't use cherokee. I used this for several months, and encountered all kinds of horrible memory allocation problems, crashes, etc etc. On Thu, Feb 24, 2011 at 9:15 PM, Eugene MechanisM < eugene.mechan...@gmail.com> wrote: > You can check out this tutorial: > > http://www.jeremybowers.com/

Re: mod_wsgi or mod_fcgi

2011-02-24 Thread Eugene MechanisM
You can check out this tutorial: http://www.jeremybowers.com/blog/post/5/django-nginx-and-uwsgi-production-serving-millions-page-views/ I prefer to use also Varnish and Memcached with this stack. Nginx is best for static files. and will proxy non-static requests to uwsgi. nginx+uwsgi it's the best

Re: mod_wsgi or mod_fcgi

2011-02-24 Thread Eric Chamberlain
On Feb 23, 2011, at 11:10 PM, Shamail Tayyab wrote: > Hi, > > I am going to deploy a site today on an Amazon's large instance. > Our setup is like this: > > server 1: mongoDB + redis server > server 2: django + nodejs > > We are using node for server push things. Can you please suggest what

Re: mod_wsgi or mod_fcgi

2011-02-24 Thread Eugene MechanisM
I'll advice you to use nginx+uwsgi stack. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.co

Re: mod_wsgi or mod_fcgi

2011-02-24 Thread Cal Leeming [Simplicity Media Ltd]
Personally, I *always* use WSGI with uWSGI by unbit. Always proven stable. On Thu, Feb 24, 2011 at 7:10 AM, Shamail Tayyab wrote: > Hi, > > I am going to deploy a site today on an Amazon's large instance. > Our setup is like this: > > server 1: mongoDB + redis server > server 2: django + nodej

mod_wsgi or mod_fcgi

2011-02-24 Thread Shamail Tayyab
Hi, I am going to deploy a site today on an Amazon's large instance. Our setup is like this: server 1: mongoDB + redis server server 2: django + nodejs We are using node for server push things. Can you please suggest what would be the best way to deploy django as? (via wsgi or fcgi). We've pl