Ticket #10213: static-files.patch
File static-files.patch, 544 bytes (added by , 16 years ago) |
---|
-
docs/howto/static-files.txt
72 72 (r'^site_media/(?P<path>.*)$', 'django.views.static.serve', 73 73 {'document_root': settings.STATIC_DOC_ROOT}), 74 74 75 Be careful not to use the same path as your :setting:`ADMIN_MEDIA_PREFIX` (which defaults 76 to ``/media/``) as this will overwrite your URLconf entry. 77 75 78 Directory listings 76 79 ================== 77 80