Skip to content

Instantly share code, notes, and snippets.

@renyi
Created February 16, 2011 08:38
Show Gist options
  • Save renyi/829045 to your computer and use it in GitHub Desktop.
Save renyi/829045 to your computer and use it in GitHub Desktop.
django settings - static files
# Static media
(r'^media/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}),
(r'^media/admin/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.ADMIN_MEDIA_PREFIX}),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment