Changes between Initial Version and Version 2 of Ticket #27325


Ignore:
Timestamp:
Oct 31, 2016, 4:55:24 AM (8 years ago)
Author:
Mads Jensen
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27325

    • Property Cc Aleksej Manaev added
    • Property Owner changed from nobody to Aleksej Manaev
    • Property Status newassigned
  • Ticket #27325 – Description

    initial v2  
    1 The documentation for the function for serving static files, `django.contrib.staticfiles.views.serve()`, describes it as "grossly inefficient and probably insecure. This is only intended for local development, and should never be used in production." To ease the deployment of small sites, it would be nice to fix or replace it with something that could be used in production. [https://whitenoise.evans.io/ WhiteNoise] is an example of static file serving done in Python and is a possible candidate for integration in Django.
     1The documentation for the function for serving static files, `django.contrib.staticfiles.views.serve()`, describes it as "grossly inefficient and probably insecure. This is only intended for local development, and should never be used in production." To ease the deployment of small sites, it would be nice to fix or replace it with something that could be used in production. [http://whitenoise.evans.io/ WhiteNoise] is an example of static file serving done in Python and is a possible candidate for integration in Django.
    22
    33Ideas are discussed in more detail on the [https://groups.google.com/d/topic/django-developers/N0KbgDeLuUE/discussion delegating our static file serving] thread on django-developers.
Back to Top