Fixed #33048 -- Doc'd that DEBUG static files requests don't use middleware chain.
This commit is contained in:
parent
85f2a9fb0f
commit
1625a8c8eb
|
@ -108,6 +108,10 @@ do this by adding the following snippet to your urls.py::
|
||||||
folder; it doesn't perform static files discovery like
|
folder; it doesn't perform static files discovery like
|
||||||
:mod:`django.contrib.staticfiles`.
|
:mod:`django.contrib.staticfiles`.
|
||||||
|
|
||||||
|
Finally, static files are served via a wrapper at the WSGI application
|
||||||
|
layer. As a consequence, static files requests do not pass through the
|
||||||
|
normal :doc:`middleware chain </topics/http/middleware>`.
|
||||||
|
|
||||||
.. _serving-uploaded-files-in-development:
|
.. _serving-uploaded-files-in-development:
|
||||||
|
|
||||||
Serving files uploaded by a user during development
|
Serving files uploaded by a user during development
|
||||||
|
|
Loading…
Reference in New Issue