在Rails 3 的精简环境和生产环境中。请求任意图片,总是返回404

发布于 2024-11-17 05:18:22 字数 108 浏览 2 评论 0原文

全部。

我有一个Rails应用程序,当它在开发环境下时,图像将显示在页面中,但如果我转入生产模式,所有图像都会响应404未找到。

导轨版本:3.0.7 Web 服务器:瘦

all.

I have a Rails app, and when it under development environment, images will display in the page, but if I turn into production mode, all the images will response 404 not found.

Rails version: 3.0.7
Web Server: thin

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

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

发布评论

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

评论(1

忘你却要生生世世 2024-11-24 05:18:22

在 config/environments/production.rb 中更改 config.serve_static_assets
= 假为真。但请记住在实际生产机器上将其关闭。瘦身、独角兽等不适合静态
文件。您应该在应用程序服务器前面使用 apache 或 nginx
负载平衡应用服务器的多个实例并提供静态文件。

所有的功劳都归于用户垃圾

in config/environments/production.rb change config.serve_static_assets
= false to be true. But remember to turn it to off on actual production machine. Thin, unicorn etc. are not fr serving static
files. You should use apache or nginx in front of your app server to
load balance multiple instances of app server and serve static files.

ALL CREDITS TO user rubish

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