I'm new to both Django and Cappuccino. I have a Django site setup and running through Apache via mod_wsgi. I want to use Django as the backend for a Cappuccino application, but a VirtualHost setup in Apache and mod_wsgi to serve a Django application serves static files out of a different location than the normal web root (e.g. http://example.com/media/ or http://media.example.com).
How could I setup the environment so that http://example.com serves my Cappuccino Javascript/HTML/CSS files, while also letting me use the typical Django URL system to create endpoints for AJAX calls (e.g. http://example.com/some/json/)?