diff options
| author | Collin Stedman <kronion@users.noreply.github.com> | 2017-10-14 10:18:47 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-10-18 20:38:30 -0400 |
| commit | 4a861e88508eacdb8d0d5bc43f9a0576cedb9f22 (patch) | |
| tree | f75263ee5085f7618d8d964e8754bf1eced60697 /docs | |
| parent | 0a69479b6c58c9eb420e688e436b6c6e41415613 (diff) | |
Refs #19295 -- Doc'd that ManifestStaticFilesStorage doesn't work with runserver --insecure.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/staticfiles.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/ref/contrib/staticfiles.txt b/docs/ref/contrib/staticfiles.txt index 7285c84c7a..a883c68f36 100644 --- a/docs/ref/contrib/staticfiles.txt +++ b/docs/ref/contrib/staticfiles.txt @@ -222,8 +222,10 @@ 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. :djadmin:`runserver` +in your project's :setting:`INSTALLED_APPS` setting. + ``--insecure`` doesn't work with +:class:`~django.contrib.staticfiles.storage.ManifestStaticFilesStorage` or :class:`~django.contrib.staticfiles.storage.CachedStaticFilesStorage`. Example usage:: |
