Здравствуйте, у меня проблема с Django, пытающимся развернуть его на сервере с помощью apache. по какой-то причине, когда я пишу эту информацию в моем файле httpd.conf.
<location "/mysite">
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
PythonOption django.root /mysite
PythonDebug off
PythonPath "['/user/local/src/djcode','/user/local/src/djcode/mysite'] + sys.path"
</Location>
Я получаю эту ошибку при перезапуске apache.
Syntax error on line 3 of /etc/apache2/httpd.conf:
Invalid command 'PythonHandler', perhaps misspelled or defined by a module not included in the server configuration
Action 'configtest' failed.
Есть идеи?