[Answer]-Apache to serve Django Server Error (500)

1👍

Enable debug in your settings.py file and you will see what error Django throws. When debug is off, Django simply lets Apache know a server error has happened, and thus a HTTP code 500 is returned.

You may be missing a dependency.

Leave a comment