2009年4月1日星期三

django使用mod_python的简单配置

在/etc/conf.d/apache2的APACHE2_OPTS中加入PYTHON。
在/etc/apache2/vhosts.d/00_default_vhost.conf中加入:
<Location "/">
PythonPath "sys.path + ['/var/www/localhost/htdocs']"
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
PythonOption django.root /mysite
PythonDebug On
</Location>

没有评论: