On Apr 4, 4:38 am, "Keith Mallory" <[EMAIL PROTECTED]> wrote: > I have a Ubuntu Server with 4-5 Django web sites hosted on mod_python. > > Everything works fine, expect that the web sites keeps on pointing against > each other. That Site A points to Site B and B to C and so on. > > This is how I have set up my httpd.conf > > NameVirtualHost * > > <VirtualHost *> > ServerName example.com > SetHandler python-program > PythonHandler django.core.handlers.modpython > SetEnv DJANGO_SETTINGS_MODULE exp.settings > Alias /admin_media "/var/www/exp/admin_media" > PythonPath "['/var/www/exp/projects/'] + sys.path" > PythonDebug On > PythonInterpreter py > <Location "/admin_media/"> > SetHandler None > </Location> > </VirtualHost> > > When I retstart the Apache Server, every site works perfectly, but then it > all fails to point to the right domain. This has created a very embrassing > situation. Has anyone experienced this, and what is the remedy? Do you have all sites under the same VirtualHost, or do you have a different VirtualHost container for each? You aren't really clear on this as your description mentions different sites but your Apache configuration only shows a single one being setup. BTW, if under separate VirtualHost containers, do not use the PythonInterpreter directive as you are to set them all to use 'py' as the sub interpreter as then they will all overlap. When using mod_python, the default is to give each VirtualHost container a separate Python sub interpreter and thus they would be separate, you appear to perhaps be overriding that. Graham --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---