Django:提供管理媒体文件

发布于 2024-08-12 09:24:50 字数 779 浏览 1 评论 0原文

我正在尝试从另一个域(当前域的子域)提供静态文件。 为了提供所有媒体文件,我使用了以下设置:

媒体_URL = 'http://media.bud-inform.co.ua/'

所以当在我使用的模板

{{ MEDIA_URL }}

已替换为上面的设置。现在我尝试从同一子域提供管理媒体文件,我这样更改了设置:

ADMIN_MEDIA_PREFIX = 'http://media.bud-inform.co.ua/admin_media/ ',

并期望从我的管理站点对媒体的所有调用都将发送到此 url....但实际上它并没有以这种方式工作,我仍然看到 CSS 的路径如下:

http://bud-inform.co.ua/media/css /login.css

您能否建议如何正确提供管理媒体文件

I am trying to serve static files from another domain (sub domain of current domain).
To serve all media files I used this settings:

MEDIA_URL =
'http://media.bud-inform.co.ua/'

So when in template I used

{{ MEDIA_URL }}

it was replace with the setting above. Now I am trying to serve admin media files from the same subdomain, I changed the settings this way:

ADMIN_MEDIA_PREFIX =
'http://media.bud-inform.co.ua/admin_media/',

and expected that all calls to media from my admin site will be made to this url.... But actually it didn't work this way, I still see paths to CSS made as following:

http://bud-inform.co.ua/media/css/login.css

Could you suggest how to serve admin media files correctly

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

老街孤人 2024-08-19 09:24:50

MEDIA_URLADMIN_MEDIA_PREFIX 是两个不同的东西。一个是您的媒体文件的位置,另一个是 django 管理系统媒体文件的位置。

您必须确保 ADMIN_MEDIA_PREFIX 指向您实际提供管理媒体的位置。 Django 不会为你处理这一步。

django 管理媒体位于 django/contrib/admin/media/ 。将该目录复制或符号链接到公开可见的位置,并设置 ADMIN_MEDIA_PREFIX 以反映您放置它的位置。

MEDIA_URL and ADMIN_MEDIA_PREFIX are two different things. One is the location of your media files, while the other is the location of the django admin system's media files.

You have to make sure that the ADMIN_MEDIA_PREFIX points to somewhere where you're actually serving the admin media. Django doesn't handle that step for you.

The django admin media is at django/contrib/admin/media/. Copy or symlink that directory somewhere publicly visible and set ADMIN_MEDIA_PREFIX to reflect where you put it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文