To log file τι αναφέρει;
Το WSGIDaemonProcess γιατί είναι απενεργοποιημένο;
Επίσης κάτι έχεις κάνει λάθος με το Directory. Το ανοίγεις , το κλείνεις και μετά το ξανακλείνεις δεύτερη φορά.
Ρίξε μια ματιά εδώ:
docs.djangoproject.com/en/1.9/howto/deployment/wsgi/modwsgi/
Για να βάλεις τα settings σε άλλο αρχείο δες Include:
httpd.apache.org/docs/2.4/mod/core.html#include
Σου επισυνάπτω και τα δικά μου settings που έπαιξαν σε xampp/windows:
WSGIPythonPath "C:/myproject/gazetteer;C:/Users/Administrator/Envs/gazetteer/Lib/site-packages"
# Insert the full path to the wsgi.py-file here
WSGIScriptAlias /gazetteer "C:/myproject/gazetteer/gazetteer/wsgi.py"
<Directory "C:/myproject/gazetteer">
Require all granted
Options All
AllowOverride All
</Directory>
# This alias makes serving static files and media files possible.
# Please note, that this is geared to our settings/common.py
# In production environment, you will propably adjust this!
Alias /static/ "C:/myproject/gazetteer/places/static/"
Alias /media/ "C:/myproject/gazetteer/places/media/"
# Serving static files from this directory
# Please note, that this is geared to our settings/common.py
# In production environment, you will propably adjust this!
<Directory "C:/myproject/gazetteer/places/static/">
Require all granted
</Directory>
<Directory "C:/myproject/gazetteer/places/media/">
Require all granted
</Directory>