blob: 2c604a164a33f90872ff021cdbfb76b659d8940e [file] [log] [blame]
<IfModule !prefork.c>
# Django requires the prefork MPM, so just fail with this bogus directive
# if it's not loaded. See
# http://test.kernel.org/autotest/AutotestServerInstall for more info.
ERROR__DJANGO_REQUIRES_THE_PREFORK_MPM
</IfModule>
Alias /media "/usr/local/autotest/site-packages/django/contrib/admin/media"
<Location ~ "/(afe|new_tko|planner)/server">
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE frontend.settings
PythonDebug On
# Force our own site-packages to be loaded by mod_python prior
# to mod_python's system python site-packages directory.
# This way our code can depend on library versions other than
# those available as packages on various OS distributions.
PythonPath "['/usr/local/autotest/site-packages', '/usr/local/autotest'] + sys.path"
</Location>