我将mod_python用于我自己的自定义身份验证机制,如下所示:
# apache/conf/conf.d/mod_python.conf
<Directory some/path>
PythonAccessHandler myhandler::myhandler
Options +ExecCGI
AddHandler cgi-script .cgi
</Directory>
-
# myhandler.py
from mod_python import apache
def myhandler(req):
if check(req):
return apache.DECLINED
else:
return apache.HTTP_UNAUTHORIZED
def check(req):
from random import random
return random() >= 0.5
并希望有一些CGI脚本将在myhandler拒绝时执行。
#!/bin/bash
# test.cgi
echo Content-type: text/plain
echo
echo "Hello!"
此配置工作正常,但除此之外,我想将mod_python中的几个信息传递给CGI脚本,如下所示:
# myhandler.py
def myhandler(req):
if check(req):
import sys
req.subprocess_env['python_version'] = repr(sys.version_info)
return apache.DECLINED
else:
return apache.HTTP_UNAUTHORIZED
-
#!/bin/bash
# test2.cgi
echo Content-type: text/plain
echo
echo "python version = $python_version"
但是,此配置不起作用。传递给req.subprocess_env的值将在CGI脚本中丢弃。
有没有办法将信息从mod_python传递到CGI脚本?
任何帮助都将不胜感激。
答案 0 :(得分:0)
我建议的方式在apache 2.4中按预期工作,但在2.2
中没有