我是编程的新手,并且在Heroku上运行了一个应用程序,这只不过是一个沙箱,我尝试编写工作代码。我碰巧遇到了Heroku入门指南(链接如下),建议在部署Rails 4应用程序时使用Unicorn。
在本指南中,它指出"在推送到Heroku之前,您需要测试RACK_ENV设置为生产,因为这是您的Heroku应用程序将运行的环境。"在开发(本地机器)中,我决定试用入门指南中的建议,它工作正常。
现在我想为我的生产环境做这件事。目前尚不清楚您是否会遵循以下指南中的相同说明来代替" production"为了发展。"如果有人能够确认这是否是我这样做的正确方法,我将不胜感激。如果这不是正确的方法,为我提供一些如何正确做到这一点的指导也将不胜感激。
https://devcenter.heroku.com/articles/getting-started-with-rails4
答案 0 :(得分:0)
我们有像这样的独角兽在Heroku工作:
#Gemfile
group :production do
gem 'unicorn'
end
#Procfile
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
#config/unicorn.rb
# If you have a very small app you may be able to
# increase this, but in general 3 workers seems to
# work best
worker_processes 3
# Load your app into the master before forking
# workers for super-fast worker spawn times
preload_app true
# Immediately restart any workers that
# haven't responded within 30 seconds
timeout 30