我想写一个简单的mod_perl处理程序,它返回本地时间,如本页所述(http://perl.apache.org/docs/2.0/user/handlers/intro.html),但是我在哪里可以找到这个文件来访问它。
我使用的是Ubuntu,但没有名为MyApache2的目录。那么,在哪里可以找到这个文件来尝试功能呢?
这只是一个例子。您需要自己创建文件。(您将看到您的示例引用了"file:MyApache2/CurrentTime.pm")
mkdir -p example-lib/MyApache2
touch example-lib/MyApache2/CurrentTime.pm
然后将示例中的内容粘贴到您刚刚创建的文件中。
为了在mod_perl下运行,您还必须让服务器知道MyApache2的位置。您应该能够在Apache配置中添加这样的内容:
PerlSwitches -I/path/to/example-lib
在测试之前,不要忘记重新启动Apache。