我想编写一个简单的mod_perl处理程序,它返回本页所述的本地时间(http://perl.apache.org/docs/2.0/user/handlers/intro.html),但我在哪里可以找到该文件来访问它。
我正在使用Ubuntu,但没有名为MyApache2的目录。那么在哪里找到这个文件来试试这个功能呢?
答案 0 :(得分:2)
这只是一个例子。您需要自己创建文件。 (您将看到您的示例引用“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。