2π
β
In my case I needed to make only Alias for static file, in your case, my configuration will look like this:
WSGIDaemonProcess Dashboard_Web python-path=E:/Bitnami/djangostack-1.6.7-1/apps/django/django_projects/Dashboard_Web/
WSGIScriptAlias /Dashboard_Web E:/Bitnami/djangostack-1.6.7-1/apps/django/django_projects/Dashboard_Web/Dashboard_Web/wsgi.py process-group=Dashboard_web
Alias /static/ E:/Bitnami/djangostack-1.6.7-1/apache2/static/
<Directory E:/Bitnami/djangostack-1.6.7-1/apps/django/django_projects/Dashboard_Web/>
Order allow,deny
Allow from all
</Directory>
Itβs worth to use this WSGIDaemonProcess when you run more then one django application. Also your problem may be coz by your system, you may try to use β\β instead of β/β, for example:
Alias /static/ E:\Bitnami\djangostack-1.6.7-1\apache2\static\
π€Konrad Klimczak
Source:stackexchange.com