I have several sites for the same client, on the same server where django is running, for example. fooplumbing.comand bazheating.org. These two sites will have different applications for django, i.e. A plumbing site should not have access to heating applications and vice versa. There are no objects shared between two sites, and each of them needs a separate admin site.
Is this possible using the site infrastructure, or do I need to have two separate apache instances on which the sites are running? (Yes, I need to use apache - no choice)
This is a Linux server, so is there any smart way to use symbolic links for this? I am pretty experienced with the basic django development, but I don't know when it comes to server management.
source
share