其中dispatch.fcgi 提供与“rackup”相同的行为。
我有一个 ruby 机架应用程序,我想在 FCGI 后面管理它。
我应该在 dispatch.fcgi
文件中放入什么,以便执行的应用程序匹配/使用 config.ru 的内容?
我希望 fcgi 启动的应用程序与运行 rackup
时启动的应用程序相同。
感谢您的回答。
I have a ruby rack application that I would like to manage behind FCGI.
What should I put inside the dispatch.fcgi
file so the executed application matches/uses the content of config.ru ?
I would like the application launched by fcgi to be identical to the one launched when running rackup
.
Thanks for your answers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将以下内容放在dispatch.fcgi脚本的底部,以启动基于config.ru的fastCGI服务器,就像rackup一样:
You can put the following at the bottom of a dispatch.fcgi script to start a fastCGI server based on a config.ru just like rackup would: