Hi!

  I have two domains running Django. In one, I can access:

http://babaia.com.br/admin/
or
http://www.babaia.com.br/admin/

  But on the other one:

http://miniurl.com.br/admin/ gives me an error
and
http://www.miniurl.com.br/admin/ works fine.

  Here are their VirtualHost. Each reside on different files named
after its domain inside the /etc/apache2/sites-available/ diretory,
symlinked to /etc/apache2/sites-enabled/. Ubuntu Dapper is the
distribution.

  They look identical, all I changed is the domain name. Everything
works fine, except the admin from the server without the www.

<VirtualHost *>
    ServerName www.babaia.com.br
    ServerAlias babaia.com.br

    DocumentRoot /var/www/babaia.com.br

    CustomLog     /var/log/apache2/babaia.com.br/access.log combined
    ErrorLog      /var/log/apache2/babaia.com.br/error.log

    SetHandler python-program
    PythonHandler django.core.handlers.modpython
    SetEnv DJANGO_SETTINGS_MODULE babaia.settings
    PythonDebug Off
    PythonPath "['/usr/lib/python2.4/site-packages/django_091'] + sys.path"
    PythonInterpreter babaia

    <Location "/web/">
      SetHandler None
    </Location>
    <Location "/media/">
      SetHandler None
    </Location>
</VirtualHost>

<VirtualHost *>
    ServerName www.miniurl.com.br
    ServerAlias miniurl.com.br

    DocumentRoot /var/www/miniurl.com.br

    CustomLog     /var/log/apache2/miniurl.com.br/access.log combined
    ErrorLog      /var/log/apache2/miniurl.com.br/error.log

    SetHandler python-program
    PythonHandler django.core.handlers.modpython
    SetEnv DJANGO_SETTINGS_MODULE miniurl.settings
    PythonDebug Off
    PythonPath "['/usr/lib/python2.4/site-packages/django_091'] + sys.path"
    PythonInterpreter miniurl

    <Location "/web/">
      SetHandler None
    </Location>
    <Location "/media/">
      SetHandler None
    </Location>
</VirtualHost>

  Any idea of what's wrong?

  Many thanks,

-- 
Julio Nobrega - http://www.inerciasensorial.com.br

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