我在Rails上有应用程序3.一切正常,但我们知道最佳性能应该是生产模式。
当我在Justhost控制面板和environment.rb文件中将环境设置为Production时 与
# Load the rails application
require File.expand_path('../application', __FILE__)
# Initialize the rails application
Darbs::Application.initialize!
ENV['RAILS_ENV'] ||= 'production'
touch tmp/restart.txt
它给了我错误: 无法启动Ruby(Rack)应用程序
Error message:
Admin is not a class
当我用Rail.env.production检查当前环境时?它返回false
。
我尝试了几次重启,等等没有成功。
在生产日志文件中我得到Connecting to database specified by database.yml
这意味着连接指定数据库有些问题?
有什么建议 ?
感谢。