[Fixed]-Migrating from mod_python into mod_wsgi (multiple projects)

1👍

Since your projects are all at separate sub URLs, simply use multiple WSGIScriptAlias directives, one for each sub URL. And definitely use a daemon process group for each distinct Django instance.

For some additional reading see:

There are also the mod_wsgi docs, although they are in a slight mess right now.

Leave a comment