我在OSQA有问题。任何时候,我尝试进入用户页面,都会出现“500 错误”,例如:http: //turkrusforum.com/users/2/mertnuhoglu/
我检查了错误日志。但是那里什么都没有。我想django-debug-toolbar
更多地安装和调试问题。
我把DEBUG = True
和INTERNAL_IPS
放入settings.py
. 但我仍然看不到调试工具栏。
这里说在 Apache 下,这个问题可能与 Alias 设置有关。
这是VirtualHost
我httpd.conf
文件中的定义:
<VirtualHost *:26903>
ServerName turkrusforum.com
KeepAlive Off
WSGIDaemonProcess turkrusforum.com processes=1 python-path=/home/mertnuhoglu/webapps/otrf:/home/mertnuhoglu/webapps/otrf/osqa:/home/mertnuhoglu/webapps/otrf/lib/python2.6 threads=1 inactivity-timeout=360 display-name=[wsgi-otrf]httpd
WSGIProcessGroup turkrusforum.com
WSGIScriptAlias / /home/mertnuhoglu/webapps/otrf/otrf.wsgi
</VirtualHost>
谁能帮我找出如何配置别名设置?