I am trying to deploy my Django App on AWS by following this article Link of the article.
I have done almost same but getting this error
[Sun Nov 13 16:02:45.432532 2022] [wsgi:error] [pid 116628:tid 140699140834880] [remote 171.78.234.250:51518] ModuleNotFoundError: No module named 'bitssatoshiproject>
here is my http conf file-
`
<VirtualHost *:80>
ServerAdmin ubuntu@172-31-11-19
ServerName 172-31-11-19
ServerAlias 172-31-11-19.com
ErrorLog /home/ubuntu/site/logs/error.log
CustomLog /home/ubuntu/site/logs/access.log combine
<Directory /home/ubuntu/BitsSatoshi/bitssatoshiproject>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
WSGIDaemonProcess bits python-home=/home/ubuntu/bitsvenv python-path=/home/ubuntu/BitsSatoshi/
WSGIProcessGroup bits
WSGIScriptAlias / /home/ubuntu/BitsSatoshi/bitssatoshiproject/wsgi.py
</VirtualHost>
`
Please help me out guy, I am trying since so many days.
I tried every guide on google but no success and don't even know I am wrong. But one thing is for sure that the wsgi is not getting my virtual environment python.