/ 中存储网

Apache服务器中mod_python的配置方法

2014-12-15 12:46:01 来源:kejihao

想找一个最简单的方式跑python的cgi,选择了mod_python,这里面的pythonhandler index没搞的很懂,不过反正程序是可以跑起来了。

centos6里要用epel源才有mod_python。

LoadModule python_module modules/mod_python.so

<Directory “/var/www/html/py”>

AllowOverride FileInfo

AddHandler mod_python .py

#    PythonHandler index

PythonDebug On

Order allow,deny

Allow from all

</Directory>