仅在开发服务器上提供静态文件的问题

时间:2013-09-30 21:57:34

标签: django django-templates django-admin

我在开发服务器上提供静态文件时遇到问题。我把它配置如下。这是在我的settings.py文件中:

STATIC_URL = '/static/'
if socket.gethostname() == 'production_server':
  STATIC_ROOT = "/var/www/html/static/"
else:
  STATIC_ROOT = os.path.join(PROJECT_DIR, 'static')

我发现了一些对此感到好奇的事情:

  1. 生产服务器上的一切正常。
  2. 在开发服务器上,我为自己的文件收到了404错误,但没有收到管理文件......

    http://localhost:8000/static/media/default.cssFailed to load resource: the server responded with a status of 404 (NOT FOUND)
    http://localhost:8000/static/media/javascript/pipe.jsFailed to load resource: the server responded with a status of 404 (NOT FOUND)
    http://localhost:8000/static/media/javascript/imdb_form.jsFailed to load resource: the server responded with a status of 404 (NOT FOUND)
    http://localhost:8000/static/media/pipe-img/wb-mpi-logo.pngFailed to load resource: the server responded with a status of 404 (NOT FOUND)
    http://localhost:8000/static/media/pipe-img/wb-mpi-logo-large.pngFailed to load resource: the server responded with a status of 404 (NOT FOUND)
    
  3. ...来自此模板...

    <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}media/default.css" media="screen"/>
    <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}admin/css/forms.css" />
    <link rel="shortcut icon" href="{{ STATIC_URL }}media/pipe-img/favicon.ico" type="image/x-icon" />
    <link rel="icon" href="{{ STATIC_URL }}media/pipe-img/favicon.ico" type="image/x-icon">
    <script type="text/javascript" src="{% url 'django.views.i18n.javascript_catalog' %}"></script>
    <script type="text/javascript" src="{{ STATIC_URL }}admin/js/core.js"></script>
    <script type="text/javascript" src="{{ STATIC_URL }}admin/js/admin/RelatedObjectLookups.js"></script>
    <script type="text/javascript" src="{{ STATIC_URL }}admin/js/jquery.js"></script>
    <script type="text/javascript" src="{{ STATIC_URL }}admin/js/jquery.init.js"></script>
    <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js'></script>
    <script type="text/javascript" src="{{ STATIC_URL }}media/javascript/pipe.js"></script>
    <script type="text/javascript" src="{{ STATIC_URL }}media/javascript/imdb_form.js"></script> <!-- FUTURE:  call from IMDB widget? -->
    

    请注意,它只是抱怨非管理员网址。

    最后,我还注意到,如果我运行./manage.py collectstatic,它只会将管理文件收集到我的STATIC_ROOT目录中,而不是我的应用程序的媒体文件中。此外,即使我清除了STATIC_ROOT目录,管理员链接仍然可以工作。

    如何解决这些404错误并正确提供所有静态文件?

1 个答案:

答案 0 :(得分:1)

STATICFILES_DIRS中设置settings.py变量,以包含静态资产所在的路径。在使用./manage.py runserver

运行DEBUG = True时,这应该会将其带入

另外,我会使用环境变量来扩展STATICFILES_DIRS

的元组
if os.environ['deploy_type'] == 'prod':
    STATICFILES_DIRS += ("/var/www/html/static/",)
else:
    STATICFILES_DIRS += (os.path.join(PROJECT_DIR, 'static'),)

您可以将环境变量设置为部署过程的一部分,并协助实现灵活的部署过程。

对不起有点切线,希望这会有所帮助:)