[Fixed]-I don't get how to run Django with mod_wsgi and Apache?

1👍

Your wsgi script and settings file are in the same folder
Try changing

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myproject.settings")

to

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")

Leave a comment