Why can't my Apache see my media folder?

Posted by alex on Stack Overflow See other posts from Stack Overflow or by alex
Published on 2010-03-24T10:32:47Z Indexed on 2010/03/24 10:53 UTC
Read the original article Hit count: 568

Filed under:
|
|
|
|
Alias /media/ /home/matt/repos/hello/media
<Directory /home/matt/repos/hello/media>
Options -Indexes
Order deny,allow
Allow from all
</Directory>
WSGIScriptAlias / /home/matt/repos/hello/wsgi/django.wsgi

/media is my directory. When I go to mydomain.com/media/, it says 403 Forbidden. And, the rest of my site doesn't work because all static files are 404s. Why?

Edit: hello is my project folder

© Stack Overflow or respective owner

Related posts about django

Related posts about python