我正在尝试使用 mod_python 在 apache 下运行我的 Django 应用程序,但我不知道问题出在哪里。
我的 django 项目在目录下/srv/APCC
Apache 虚拟主机配置如下
<VirtualHost *:8000>
ServerAdmin my.mail@gmail.com
DocumentRoot /srv/APCC/
<Location "/srv/APCC/">
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE APCC.settings
PythonDebug Off
PythonOption django.root /srv/APCC/
PythonPath "['/srv/APCC/'] + sys.path"
</Location>
</VirtualHost>
当我点击myhost.com:8000
时,浏览器会列出我的 django 应用程序文件。这里会有什么问题?