Reputation: 41
I want to start make a django app, but i want to know if it's possible to use same "core" to host multiple sites.each site will just have a unique conf file (templates to use, db name, meta info, etc). what will be the best way to do that ?
Upvotes: 2
Views: 71
Reputation: 916
Ultimately, a Django app is a WSGI app. Many decent WSGI servers support running multiple WSGI apps simultaneously. For instance, uWSGI supports multiple WSGI apps using "Emperor mode". Check it out: http://uwsgi-docs.readthedocs.org/en/latest/Emperor.html
Upvotes: 0
Reputation: 85
Hi :) Hope that yo are doing fine .
I'm not that good in python but I guess that you could get some help from a previous similar question through this link
Hope that my answer helped in a way or clarified your intent
Regards
Upvotes: 0