仅当 Rack::Static 在生产环境中启动时,如何运行它?

发布于 2024-10-19 22:06:22 字数 356 浏览 0 评论 0原文

我有一个像这样的 Rails 3.0.5 应用程序的 config.ru :

require ::File.expand_path('../config/environment',  __FILE__)
use Rack::Static, :urls => ['/uploads'], :root => 'tmp'

run newapp::Application

但我想执行 use Rack::Static, :urls => ['/uploads'], :root =>; 'tmp' 行当且仅当 Rails 在生产中启动时。

我该怎么办? 提前致谢 卢卡

I have a config.ru for Rails 3.0.5 app like this :

require ::File.expand_path('../config/environment',  __FILE__)
use Rack::Static, :urls => ['/uploads'], :root => 'tmp'

run newapp::Application

but I want to exec the use Rack::Static, :urls => ['/uploads'], :root => 'tmp' line if and only if Rails start in production.

How can I do it ?
Thanks in advance
luca

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

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

发布评论

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

评论(1

心欲静而疯不止 2024-10-26 22:06:22

您可以在您的环境中执行此操作,而不是在 config.ru 中执行此操作,因此在 production.rb 中添加以下内容:

config.middleware.use Rack::Static, :urls => ['/uploads'], :root => 'tmp'

Instead of doing this in your config.ru you can do it in your environment, so in production.rb add this:

config.middleware.use Rack::Static, :urls => ['/uploads'], :root => 'tmp'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文