Can't I have a deploy like ASP or PHP apps that use the same port and  
use a different directory for each app?

Thanks

Frank
On Mar 27, 2007, at 5:30 PM, risomt wrote:

>
> You have both virtual hosts connecting on the same port - switch
> mysite3 to something like :8081 and it should work
>
> On Mar 27, 5:11 pm, "Frank" <[EMAIL PROTECTED]> wrote:
>> mysite works
>> mysite3 gives me a 404 error
>> I guess I still have something wrong.
>>
>> Thanks
>> Frank
>>
>> NameVirtualHost *
>>
>> <VirtualHost 127.0.0.1:8080>
>>   ServerName mysite
>>   <Location "/mysite/">
>>     SetHandler python-program
>>     PythonPath "['C:\djangoapps'] + sys.path"
>>     PythonHandler django.core.handlers.modpython
>>     SetEnv DJANGO_SETTINGS_MODULE mysite.settings
>>     PythonDebug On
>>   </Location>
>> </VirtualHost>
>>
>> <VirtualHost 127.0.0.1:8080>
>>   ServerName mysite3
>>   <Location "/mysite3/">
>>     SetHandler python-program
>>     PythonPath "['C:\djangoapps'] + sys.path"
>>     PythonHandler django.core.handlers.modpython
>>     SetEnv DJANGO_SETTINGS_MODULE mysite3.settings
>>     PythonDebug On
>>   </Location>
>> </VirtualHost>
>
>
> >




--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to