[Answer]-Apache2+mod_wsgi with multiple django process in each host name

1👍

Use daemon mode, delegate each Django instance to a separate set of processes, and set python-path against each daemon process group as required for each. See:

Otherwise set the sys.path in the WSGI script file and not in the Apache configuration.

Leave a comment