Thanks for you help everyone I finally figured it out. I created
another virtual host to serve my media and it worked.
Looks like this:

<VirtualHost *:80>
    ServerAdmin [EMAIL PROTECTED]
    ServerName media.abc.net
    DocumentRoot /srv/django_site/media/
    <Directory "/">
        Options None
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>
</VirtualHost>

Not sure if this is the proper way of doing it but it works. Should
there be some documentation of the django website for serving media
this way?

Thanks again.
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to