在读mod_python的安装文档时候遇到点问题,现在解决了,和大家分享下。
我的系统是ubuntu的9.04版本,用apt-get安装apache和mod_python的
在2.3.2 配置 Apache小节中,因为apt-get安装的,在/etc/apache2/mods-available/python.load文件,里面内容是
LoadModule python_module /usr/lib/apache2/modules/mod_python.so
我们在/etc/apache2/mods-available/目录下面新建一个python.conf来配置和python相关的应用的信息
<Directory /var/wwwt>
AddHandler mod_python .py
PythonHandler mptest
PythonDebug On
AddType text/html;qs=1.0 .py
AddType text/html;qs=0.9 .html
AddType text/html;qs=0.8 .txt
</Directory>
最后的3行比较重要,像我这里用firefox浏览的时候,不能解析文档,而变成直接下载文件了。
AddType text/html;qs=1.0 .py
AddType text/html;qs=0.9 .html
AddType text/html;qs=0.8 .txt
然后用ln命令将这2个文件建立一个连接到 /etc/apache2/mods-enabled/中
重启下apache命令是/etc/init.d/apache2 restart
在/var/www/下面建立一个文件mytest.py
内容是
from mod_python import apache
def handler(req):
req.write("Hello World!")
return apache.OK
在浏览器中测试下,如果你看到Hello World! 就成功了。