8

我正在尝试使用 WSGI 为 Apache 上的特定目录设置 Python,但出现以下错误:

mod_wsgi (pid=3857): Target WSGI script '/var/www/test/test.py' does not contain WSGI application 'application'.

我的 test.py 包含:

print 'Hello, World!'

我的 wsgi.conf 包含:

LoadModule wsgi_module modules/mod_wsgi.so

WSGIPythonHome /usr/local/bin/python2.7

Alias /test/ /var/www/test/test.py

<Directory /var/www/test>
    SetHandler wsgi-script
    Options ExecCGI
    Order deny,allow
        Allow from all
</Directory>

最重要的是,有趣的是,Web 浏览器返回“404 Not Found”错误,但幸运的是,error_log 更有启发性。

我究竟做错了什么?

4

1 回答 1

13

您使用 WSGI 就好像它是 CGI(奇怪的是没有标题)。

您需要做的,因为您的直接问题是从http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide调整以下内容

def application(environ, start_response):
    status = '200 OK'
    output = 'Hello World!'

    response_headers = [('Content-type', 'text/plain'),
                        ('Content-Length', str(len(output)))]
    start_response(status, response_headers)

    return [output]

这样你就有了application礼物。

并来自引用的文档。

请注意,mod_wsgi 要求将 WSGI 应用程序入口点称为“应用程序”。如果您想将其命名为其他名称,则需要显式配置 mod_wsgi 以使用其他名称。因此,不要随意更改函数的名称。如果这样做,即使您正确设置了其他所有内容,也不会找到该应用程序。

于 2013-01-19T03:00:46.810 回答