configuration - Multiple Django Sites, one server -
i have multiple sites same client, on same server, running django, e.g. fooplumbing.com
, bazheating.org
. these 2 sites each have different django apps, plumbing site shouldn't able access heating apps, , vice versa. there no objects shared between 2 sites, , each needs own separate admin site.
is possible through sites framework, or need have 2 separate apache instances running sites? (yes, need use apache - no choice)
it's linux server, there clever way of using symlinks this? i'm pretty experienced basic django development, have no clue when comes server management.
the sites framework won't - should served separate wsgi applications.
but there's no need separate apache instances. configure apache serve separate virtualhosts, each own wsgi file.
Comments
Post a Comment