Monday, September 1, 2014

Re: Apache on Windows & multiple Django apps

See the docs on deploying with mod_wsgi:

https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/modwsgi/

If multiple Django sites are run in a single mod_wsgi process, all of them will use the settings of whichever one happens to run first. This can be solved with a minor edit to wsgi.py (see comment in the file for details), or by using mod_wsgi daemon mode and ensuring that each site runs in its own daemon process.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/25c86b53-5bad-4b91-b0aa-8c66a9cf2df6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment