Can I make STATICFILES_DIR same as STATIC_ROOT in Django 1.3?

前端 未结 1 591
时光说笑
时光说笑 2020-12-04 15:55

I\'m using Django 1.3 and I realize it has a collectstatic command to collect static files into STATIC_ROOT. Here I have some other global

相关标签:
1条回答
  • 2020-12-04 16:15

    No. In fact, the file django/contrib/staticfiles/finders.py even checks for this and raises an ImproperlyConfigured exception when you do so:

    "The STATICFILES_DIRS setting should not contain the STATIC_ROOT setting"

    The STATICFILES_DIRS can contain other directories (not necessarily app directories) with static files and these static files will be collected into your STATIC_ROOT when you run collectstatic. These static files will then be served by your web server and they will be served from your STATIC_ROOT.

    If you have files currently in your STATIC_ROOT that you wish to serve then you need to move these to a different directory and put that other directory in STATICFILES_DIRS. Your STATIC_ROOT directory should be empty and all static files should be collected into that directory (i.e., it should not already contain static files).

    0 讨论(0)
提交回复
热议问题