[Django]-500 Internal Server Error in production – Django

2👍

You’ve put backend directly on your python-path, which means that is not itself an importable name. You should put the parent directory there instead:

WSGIDaemonProcess django_app python-path=/home/atms/atms python-home=/home/atms/venv

Leave a comment