PHP 5 是否有 SAPI 模块来支持 thttpd Web 服务器?

发布于 2024-07-05 14:32:07 字数 106 浏览 8 评论 0原文

PHP 5 是否有 SAPI 模块来支持 thttpd Web 服务器? 奇怪的是,PHP 5.2.6 源代码中包含的内容是针对 PHP 4.x 的。

谢谢, 肯尼思

Is there a SAPI module for PHP 5 for supporting the thttpd web server?
Oddly, the one included on PHP 5.2.6 source is for PHP 4.x.

Thanks,
Kenneth

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

爱要勇敢去追 2024-07-12 14:32:08

PHP 5 附带的 thttpd SAPI 可以正常工作。 忽略其中显示“PHP 4”的自述文件。

但是,请了解 thttpd 的 PHP 是单线程的。 当 PHP 执行时,所有其他请求都将停止。 对于低流量站点或嵌入式应用程序来说,这可能是可以接受的。 如果没有,我建议尝试 nginx,这是另一个轻量级 Web 服务器,它通过 FastCGI 在单独的进程中运行 PHP。

The thttpd SAPI that ships with PHP 5 works. Ignore the README where it says "PHP 4".

However, understand that PHP for thttpd is single-threaded. All other requests will stall while PHP is executing. This is might be acceptable for a low traffic site or embedded application. If not, I recommend trying nginx, another lightweight web server that runs PHP in a separate process via FastCGI.

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