我已经在 apache 服务器上部署了一个 python 烧瓶应用程序。这是我的abc.conf
文件:
WSGIDaemonProcess voting_app threads=5
WSGIScriptAlias /election /var/www/voting_app/voting.wsgi
LogLevel info
ErrorLog "/var/www/voting_app/error.log"
CustomLog "/var/www/voting_app/access.log" combined
<Directory /var/www/voting_app>
WSGIProcessGroup voting_app
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
为了检查调试,我在我的应用程序中犯了一个语法错误。重新启动服务器时,我收到 500 服务器错误,但我无法在任何地方看到错误的详细信息。我检查了我作为日志添加的两个文件——它们完全是空白的。中的日志文件也是如此/var/log/apache2
。我在这里想念什么?