views:

11

answers:

1

I have requirement like this: On one server(linux) I need to run 2 instances of the same Django project (the same name, different versions). I've noticed that there is some conflict with settings module (both projects use the same file, which of course is wrong).

Do you have some pointers how to solve this problem?

A: 

Use one of the well-known techniques for selecting your settings module in your .wsgi file.

Ignacio Vazquez-Abrams