仅当 Rack::Static 在生产环境中启动时,如何运行它?
我有一个像这样的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在您的环境中执行此操作,而不是在 config.ru 中执行此操作,因此在
production.rb
中添加以下内容:Instead of doing this in your config.ru you can do it in your environment, so in
production.rb
add this: