I want to host multiple django sites on one apache instance. There is a very detailed howto tutorial in the old forum. But there are still a few issues I haven't understood: According to the tutorial, we should add a I think I don't understand how Webfaction serves a web request. What does Webfaction's web control panel do actually? Is it possible to pass over control panel settings by using apache's asked 17 Dec '10, 02:58 mertnuhoglu |
Hi, Once you've added the <virtualhost> setting in the control panel you need to add the domain(s) to the list of subdomains in the control panel. Adding the domain to the site record in the control panel will send the requests for your domain to that app. The control panel couples the DNS and domain with the configuration necessary to get it to your application. Incoming request -> Domain -> DNS lookups -> Your server -> Nginx (configuration file) -> Your Application. The control panel is what configures nginx to match your domains with your applications so you you still need it for some things. answered 17 Dec '10, 03:09 klynton |
Hi, the old tutorial is no longer available in the old url. Can anyone post a copy in this thread? thanks, stefano answered 14 May '13, 11:01 stefanomancini The configuration directives you need are available here: Apache Virtual Hosts for Django Much of the rest of the original post was related to building Apache and mod_wsgi from source, which isn't really needed anymore
(15 May '13, 16:24)
seanf
|
Everything about this mentioned here http://anishmenon.com/web-faction-multiple-django-projects-on-single-apache-instance/ answered 09 Jun '13, 01:25 anishmenon Looks great - thanks!
(09 Jun '13, 01:28)
ryans ♦♦
|
The 09 Jun 2013 post with the link http://anishmenon.com/web-faction-multiple-django-projects-on-single-apache-instance/ is no longer working. Can we get that tutorial info posted as an answer to this question so we don't have to rely on other websites? Oh, I see more info at this subcomment: https://community.webfaction.com/questions/7760/apache-virtual-hosts-for-django answered 11 Feb '15, 14:41 twtwt |