如何让 LigHTTPD 运行 mod_perl 代码?

发布于 2024-11-18 07:46:20 字数 101 浏览 3 评论 0原文

我的 mod_perl 包中有一个 MapToStorageHandler,有没有办法让它在 LigHTTPD 中工作?我见过大量有关运行脚本的代码,但没有看到任何有关链中处理程序的信息。

I have a MapToStorageHandler in my mod_perl package, is there anyway to get this to work in LigHTTPD? I've seen tons of code on running a script, but not anything about Handlers in the chain.

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

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

发布评论

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

评论(2

暗恋未遂 2024-11-25 07:46:20

mod_perl 是一个 Apache 模块。您无法在另一个 HTTP 服务器上运行 mod_perl 代码。

mod_perl is an Apache module. You can't run mod_perl code on another HTTP server.

我还不会笑 2024-11-25 07:46:20

的指南

这是有关如何设置 Lighttpd 和 Perl http://www.cyberciti.biz/tips/lighttpd-howto-setup-cgi-bin-access-for-perl-programs.html

基本上,只需将其添加到你的配置

cgi.assign = ( ".pl" => "/usr/bin/perl" )

Here is a guide on how to setup Lighttpd and Perl

http://www.cyberciti.biz/tips/lighttpd-howto-setup-cgi-bin-access-for-perl-programs.html

Basically, just add this to your config

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