ruby on Rails webrick 服务器是否曾在生产中使用过?
在主服务器(apache)离线的情况下,是否可以在内置的 webrick 服务器上运行 ruby on Rails 应用程序?或者我应该运行本地 apache 。我必须让它在本地可用,而且它很少在本地运行,但如果我必须这样做,最好是继续安装 apache 或拥有一个启动 ruby 脚本/服务器的批处理文件?一切都必须与常规在线 apache 服务器一样工作。
谢谢。
In a situation where the main server (apache) is offline, is it ever acceptable to run the ruby on rails application on the built in webrick server? Or should I have a local apache running. I have to have it available local and it would be very rare it ever ran local but if I had to would it be best to go ahead and install apache or have a batch file that fired up the ruby script/server? everything has to work the same as the regular online apache server.
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。Webrick 不是生产 Web 服务器。
瘦 和 unicorn 会是不错的选择 - Heroku 运行精简,Github 运行 unicorn。
No. Webrick is not a production web server.
Thin and unicorn would be good choices - Heroku runs thin, and Github runs unicorn.