I have my css file in
/var/www/media/static/style.css
and added
(r'^media/(?P<path>.*)$', 'django.views.static.serve',{'document_root': '/var/www/media/static'}),
to my urls but when I go to http://localhost:8000/media/style.css I get: "Page not found: /media/style.css" what is wrong?