figured out the issue was with the * not including a port :)

now, pages aren't actually working...


NameVirtualHost *:80
<VirtualHost *:80>
    ServerName www.site.net

      <Location "/">
        SetHandler python-program
        PythonHandler django.core.handlers.modpython
        SetEnv DJANGO_SETTINGS_MODULE mysite.settings
        PythonOption django.root /mysite
        PythonDebug On
        PythonPath "['/home/site'] + sys.path"
    </Location>
    <Location "/styles">
        SetHandler None
    </Location>
    <Location "/images">
        SetHandler None
    </Location>
</VirtualHost>


On Dec 30, 8:14 pm, garagefan <monkeygar...@gmail.com> wrote:
> and i don't want one to access another's django installation...
>
> and the following doesn't seem to work
> NameVirtualHost *
>
> <VirtualHost *>
>     ServerNamewww.website.net
>     <Location "/">
>         SetHandler python-program
>         PythonHandler django.core.handlers.modpython
>         SetEnv DJANGO_SETTINGS_MODULE mysite.settings
>         PythonOption django.root /mysite
>         PythonDebug On
>         PythonPath "['/home/site'] + sys.path"
>     </Location>
>     <Location "/styles">
>         SetHandler None
>     </Location>
>     <Location "/images">
>         SetHandler None
>     </Location>
> </VirtualHost>
>
> and this is the error i get:  VirtualHost _default_:443 -- mixing *
> ports and non-* ports with a NameVirtualHost address is not supported,
> proceeding with undefined results
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to