配置 Lighttpd 使用 fastcgi 运行 python 脚本

配置 Lighttpd 使用 fastcgi 运行 python 脚本

我有一个 lighttpd 服务器,我想使用 fastcgi 运行一个 python 应用程序。我遵循了lighty 主页上的示例,但我似乎无法让 lighty 执行 python 脚本。这是我在 lighttpd.conf 中的 fastcgi 部分:

fastcgi.server = (
    ".py" =>
    (
        "python-fcgi" =>
        (
         "socket" => "/tmp/fastcgi.python.socket",
         "bin-path" => "/usr/bin/login_flask/fcgitest.py",
         "check-local" => "disable",
         "max-procs" => 1,
        )
    ))

这是fcgitest.py的内容:

#!/usr/bin/python3
def myapp(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/plain')])
    return ['Hello World!\n']

if __name__ == '__main__':
    from flup.server.fcgi import WSGIServer
    WSGIServer(myapp, bindAddress="/tmp/fastcgi.python.socket").run()

当我使用此配置重新启动 lig​​hty 时,我可以看到 python 进程已启动,并且 lighty 没有出现任何错误。但是,当我转到https://localhost:444/test.py它只是一直加载。access.log 或 error.log 中没有任何内容。如果有人能给我提示如何调查此事,我将不胜感激。

编辑:我启用了 fastcgi.debug,当我转到上面提到的 URL 时,这会写入错误日志。它仍然会一直加载:

2019-07-26 11:53:26: (gw_backend.c.914) gw - found a host  0 
2019-07-26 11:53:26: (gw_backend.c.227) got proc: pid: 2628 socket: unix:/tmp/fastcgi.python.socket-0 load: 1 

答案1

根据你的fcgitest.py

if __name__ == '__main__':
    from flup.server.fcgi import WSGIServer
    WSGIServer(myapp, bindAddress="/tmp/fastcgi.python.socket").run()

所有示例均不包含bindAddress此处所含的参数。

试试这个,


if __name__ == '__main__':
    from flup.server.fcgi import WSGIServer
    WSGIServer(myapp).run()

相关内容