默认情况下,webrick使用.所以我在我的Gemfile中添加了thin
gem 'thin',:group => 'development'
现在,如果我想用它在开发模式下启动我的服务器,我必须定义它.
bundle exec rails s thin
如果我没有定义它,它总是使用webrick.那么如何定义默认使用thin?
>> thin start -p 3000
其中3000是您的端口号.
您还可以指定环境:
>> thin start -e production