5 ms·
I think Heroku's default Rails app server is WEBRick: https://devcenter.heroku.com/articles/ruby#webserver https://devcenter.heroku.com/articles/ruby#webserver
by igul222 13y ago
I think Heroku's default Rails app server is WEBRick: https://devcenter.heroku.com/articles/ruby#webserver https://devcenter.heroku.com/articles/ruby#webserver
- hayksaakian 13y agoim pretty sure it's thin
- matthewrudy 13y agoIt will run thin if the gem is installed. Otherwise it falls back to Webrick. Rack itself favours thin, puma, and webrick (in that order). https://github.com/rack/rack/blob/6829a8a0f416ea49a18f1e3e532ed1ece24e9ea4/lib/rack/handler.rb#L57 https://github.com/rack/rack/blob/6829a8a0f416ea49a18f1e3e53...