Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 mod_wsgi 下使用 Python 时,有没有办法从模块内部知道应用程序脚本文件(.wsgi 文件)的路径?
不确定此选项是否最好,但肯定会起作用。
在您wsgi的脚本中设置环境变量:
wsgi
os.environ['WSGI_SCRIPT_FILE_PATH'] = __file__
然后,获取应用程序模块中的脚本路径。
请注意,如果每个 Python 解释器都有一个 WSGI 脚本,这将起作用(感谢 Graham Dumpleton 的评论)。