Commit afc624ca authored by Keith Edmiston's avatar Keith Edmiston Committed by Tim Graham
Browse files

[1.5.x] Fixed #19295 -- Documented that CachedStaticFilesStorage isn't...

[1.5.x] Fixed #19295 -- Documented that CachedStaticFilesStorage isn't compatible with runserver --insecure.

Backport of 028db975 from master
parent 5d029f22
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -258,7 +258,9 @@ setting is ``False``. By using this you acknowledge the fact that it's
**grossly inefficient** and probably **insecure**. This is only intended for
local development, should **never be used in production** and is only
available if the :doc:`staticfiles </ref/contrib/staticfiles>` app is
in your project's :setting:`INSTALLED_APPS` setting.
in your project's :setting:`INSTALLED_APPS` setting. :djadmin:`runserver`
``--insecure`` doesn't work with
:class:`~django.contrib.staticfiles.storage.CachedStaticFilesStorage`.

Example usage::