I have a django application in which i am using python Thread module to do multi threading, it works fine while using django development server through manage.py. But when i deploy on apache - mod_wsgi, its not working .join is failing and threading not working. Can anyone help for exact apache configuration ?
i tried keeping some multithread and multiprocess configuration like follows. But still not working. My configuration - Listen 8000
Alias /static/ /usr/td/static/
<Directory /usr/td/static/>
Require all granted
</Directory>
<Directory /usr/td>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
WSGIDaemonProcess td display-name=myproject processes=10 threads=255 python-path=/usr/td/:/usr/lib/python2.7/site-packages
WSGIProcessGroup td
WSGIScriptAlias / /usr/td/td/wsgi.py