Сейчас я развертываю тестовый проект django на aws-ec2, а AMI - Ubuntu18.04 с Python 3.6, Django 2.1, Apache2.
Проект находится в / var / www / Project, и я пытаюсь добавить параметр в apache.conf.
Проект просто сгенерирован django-admin startproject Project, и я хочу сделатьубедитесь, что при попадании на общедоступный IP-адрес, предоставленный экземпляром, он должен отобразить страницу по умолчанию в django.
WSGIDaemonProcess ubuntu processes=2 threads=12 python-path=/var/www/Project
WSGIProcessGroup ubuntu
WSGIRestrictEmbedded On
WSGILazyInitialization On
WSGIScriptAlias / /var/www/Project/Project/wsgi.py
<Directory /var/www/Project/Project>
Require all granted
</Directory>
Теперь я получил внутреннюю ошибку сервера.
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at webmaster@localhost to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Я пробовал это ранее.И похоже, что это работает только когда я использую python2.7 с django 1.11.
WSGIScriptAlias / /var/www/Project/Project/wsgi.py
WSGIPythonPath /var/www/Project
<Directory /var/www/Project/Project>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
что не так с моим файлом conf?