On Sun, Mar 7, 2010 at 4:21 PM, Shawn Milochik <[email protected]> wrote: > Have a look here: > > http://code.djangoproject.com/wiki/ServerArrangements > > In general, you should have two Web servers (e.g. Apache and nginx or > lighttpd). Apache (with mod_wsgi) to serve Django and nginx or lighttpd to > serve the static files (CSS, JavaScript, images, etc.).
AFAICT, mod_wsgi can be 'separate enough', leaving Apache free to host static files. another setup is a light and fast server (lighttpd, nginx, cherokee) plus Django on FastCGI. again, it's two separate processes (web server / FastCGI server). in short, it seems that these days the main thing to avoid is mod_python and static files on the same Apache instance. -- Javier -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

