我的机器上有一个ruby应用程序,我正在尝试使用批处理脚本进行部署。我已经完成了服务器处理的所有事情。这就是我正在使用的:
cd to/path/of/app
thin start -p 3001
这很有效。
cd to/path/of/app
thin start --servers 3
根据http://code.macournoyer.com/thin/usage/,不起作用。我收到错误“lib / thin / runner.rb:142:in'parse!':invalid option:--servers”
知道为什么这不起作用?
答案 0 :(得分:0)
在lib/thin/runner.rb
的第88行,它显示# Daemonizing not supported on Windows
:(