在我的Gemfile中,我有:
gem 'thin'
但是,当我将应用程序推送到Heroku Cedar时,仍会使用WEBrick(日志中的“启动WEBrick”)。
哪里可能有问题?
最佳答案
您只需要创建一个Procfile
并添加以下行:
web: bundle exec rails server -p $PORT thin -e $RACK_ENV
将其推送到Heroku,您将大功告成。
关于Heroku Cedar : how to stop using WEBrick,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6369230/