Docker Django 404 用于 web 静态文件,但适用于管理静态文件

Docker Django 404 for web static files, but fine for admin static files(Docker Django 404 用于 web 静态文件,但适用于管理静态文件)
本文介绍了Docker Django 404 用于 web 静态文件,但适用于管理静态文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

请帮我解决这个用于提供静态文件的 docker django 配置.

please help me on this docker django configuration for serving static files.

我在 Docker 上运行的 Django 项目在交付 静态文件 时遇到了一些问题.

my Django project running on Docker got some issues with delivering static files.

管理视图的所有静态文件加载正常,但客户端 Web 视图的静态文件抛出 404 Not found 错误.

All static files for admin view is loading fine, but static files for client web view is throwing 404 Not found Error.

这是我的 docker.yml 配置详情:

This is my docker.yml configuration details:

web:
  build: ./web
  expose:
    - "8000"
  links:
    - postgres:postgres
  volumes:
    - ./web:/usr/src/app
  ports:
    - "8000:8000"
  env_file: .env
  command: python manage.py runserver 0.0.0.0:8000

postgres:
  image: postgres:latest
  volumes:
    - /var/lib/postgresql
  ports:
    - "5432:5432"

更新

这是管理静态文件的 url,如下所示:http://developer.com:8000/static/admin/css/base.css这就是客户端静态文件 url 的样子:http://developer.com:8000/static/css/base.css通过运行 django 命令 collectstatic

我以前使用过此设置,并且工作正常.但是当我将项目根文件夹移动到另一个目录时似乎有这个问题.

I have used this setting previously, and was working fine. But when I moved the project root folder to another directory seems have this issue.

我完全被困在这里,非常感谢您的所有帮助和反馈.

I am totally stuck here, many many thanks for all your help and feedback.

推荐答案

这是 settings.py<中 STATICFILES_DIRS 配置的问题/code> 文件.

此设置定义了 staticfiles 应用程序在启用 FileSystemFinder 查找器时将遍历的其他位置,例如如果您使用 collectstatic 或 findstatic 管理命令或使用静态文件服务视图.

This setting defines the additional locations the staticfiles app will traverse if the FileSystemFinder finder is enabled, e.g. if you use the collectstatic or findstatic management command or use the static file serving view.

以下是我的 settings.py 中的配置:

Following was the configuration in my settings.py:

STATIC_URL = '/static/'
STATIC_ROOT      =  os.path.join(BASE_DIR, "static") 

现在我将这段代码更新为:

Now I updated this code to:

STATIC_URL = '/static/'
STATICFILES_DIRS = [
    os.path.join(BASE_DIR, "static"),
]

每个文件都加载正常.

参考链接

这篇关于Docker Django 404 用于 web 静态文件,但适用于管理静态文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do I make a list of all members in a discord server using discord.py?(如何使用 discord.py 列出不和谐服务器中的所有成员?)
how to change discord.py bot activity(如何更改 discord.py 机器人活动)
Issues with getting VoiceChannel.members and Guild.members to return a full list(让 VoiceChannel.members 和 Guild.members 返回完整列表的问题)
Add button components to a message (discord.py)(将按钮组件添加到消息(discord.py))
on_message() and @bot.command issue(on_message() 和@bot.command 问题)
How to edit a message in discord.py(如何在 discord.py 中编辑消息)