What are come good (or at least clever) ways of running multiple sites from a single, common Python web framework (ie: Pylons, TurboGears, etc)? I know you can do redirection based on the domain or path to rewrite the URI to point at a site-specific location and I've also seen some brutish "if site == 'site1' / elseif / elseif / etc" that I would like to avoid.
|
1
|
|
||
|
|
|
|
Django has this built in. See the sites framework. As a general technique, include a 'host' column in your database schema attached to the data you want to be host-specific, then include the |
|||
|
|
|
|
I use CherryPy as my web server (which comes bundled with Turbogears), and I simply run multiple instances of the CherryPy web server on different ports bound to localhost. Then I configure Apache with mod_proxy and mod_rewrite to transparently forward requests to the proper port based on the HTTP request. |
||
|
|
|
|
Using multiple server instances on local ports is a good idea, but you don't need a full featured web server to redirect HTTP requests. I would use pound as a reverse proxy to do the job. It is small, fast, simple and does exactly what we need here.
|
||
|
|
|
|
Using Django on apache with mod_python, I host multiple (unrelated) django sites simply with the following apache config:
No need for multiple apache instances or proxy servers. Using a different PythonInterpreter directive for each site (the name you enter is arbitrary) keeps the namespaces separate. |
|||
|
|
