我无法为 mod_fcgid 设置 python 路径或任何其他环境变量(solaris 10,glassfish apache 2.2)
我在 apache 中设置了它,但在 fcgi 脚本中的 os.environ 中没有设置:
SetEnv PYTHONPATH "/opt/uusis/lib/python2.4/site-packages/:/usr/lib/python2.4/"
和其他东西(例如 ORACLE_HOME),我需要在 fcgi 脚本中访问它们。我知道我可以用它来设置 python 路径。
sys.path.insert(0, "/opt/uusis/lib/python2.4/site-packages")
sys.path.insert(1, "/usr/lib/python2.4/")
有没有办法从 apache 传递环境值?