其中dispatch.fcgi 提供与“rackup”相同的行为。

发布于 2024-10-16 00:35:49 字数 195 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余生一个溪 2024-10-23 00:35:49

您可以将以下内容放在dispatch.fcgi脚本的底部,以启动基于config.ru的fastCGI服务器,就像rackup一样:

Rack::Server.start(
                   :config => 'config.ru',
                   :server => 'fastcgi'
                   )

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:

Rack::Server.start(
                   :config => 'config.ru',
                   :server => 'fastcgi'
                   )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文