Hi,
I followed this
https://docs.djangoproject.com/en/1.9/howto/deployment/wsgi/modwsgi/
First app works fine, if I deploy the second app, the settings conflict and images are not rendered.
[code]
Alias /static /var/www/django/track/static
<Directory /var/www/django/track/static>
Require all granted
</Directory>
<Directory /var/www/django/track>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
<Directory '/etc/httpd/django/scripts'>
Require all granted
</Directory>
WSGIDaemonProcess track python-path=/var/www/django/track:/usr/lib/python2.7/site-packages
WSGIProcessGroup track
WSGIScriptAlias /track /var/www/django/track/track/wsgi.py process-group=track
[/code]
[code]
Alias /static /var/www/django/coffee/static
<Directory /var/www/django/coffee/static>
Require all granted
</Directory>
<Directory /var/www/django/coffee>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
<Directory '/etc/httpd/django/scripts'>
Require all granted
</Directory>
WSGIDaemonProcess coffee python-path=/var/www/django/coffee:/usr/lib/python2.7/site-packages
WSGIProcessGroup coffee
WSGIScriptAlias /coffee /var/www/django/coffee/coffee/wsgi.py process-group=coffee
[/code]