Tôi muốn triển khai dự án Django của mình lên máy chủ EC2. Tôi đã cài đặt mod_wsgi.Tôi nhận được lỗi "Lệnh không hợp lệ" WSGIScriptAlias '"khi khởi động Apache
Và cấu hình như trong hướng dẫn của django.
Tôi nhận được như sau:
Invalid command 'WSGIScriptAlias', perhaps misspelled or defined by a module not included in the server configuration
lý do là gì? mod_wsgi không được cài đặt đúng?
LoadModule wsgi_module libexec/httpd/mod_wsgi.so
LoadModule alias_module libexec/httpd/mod_alias.so
WSGIScriptAlias//usr/local/apache2/htdocs/mysite/mysite/wsgi.py
WSGIPythonPath /usr/local/apache2/htdocs/mysite/mysite
<Directory /path/to/mysite.com/mysite>
<Files wsgi.py>
Order deny,allow
Allow from all
</Files>
</Directory>
Làm cách nào để bạn có thể mong đợi bất kỳ ai giúp bạn dựa trên thông tin này. – Marcin
Bạn có chắc chắn rằng người dùng Apache chạy như đã đọc quyền trên 'mod_wsgi.so'? –