I'm a little confused as to how to proceed. I'm setting up Django to run on a Mediatemple DV server. I'm trying to figure out the appropriate setup for serving image/video/etc content.
I don't quite understand what this means on http://docs.djangoproject.com/en/dev/howto/deployment/modwsgi/
We recommend using a separate Web server -- i.e., one that's not also running Django -- for serving media. Here are some good choices:
lighttpd, Nginx, TUX, A stripped-down version of Apache, Cherokee
Does this mean I should serve Django on one Apache instance (via mod_wsgi) and then serve its content on another instance of Apache or one of the alternatives above? I can do this on the same dedicated virtual server, right? If so, any advice on how I should do that?
Thanks!