Baurzhan Ismagulov wrote:
> Hmm, I've converted <Directory /mnt/sda1/ibr/debian> to <Location
> /debian> and put it after <Location />:
> 
>         DocumentRoot /var/www
>         <Directory />
>                 Options FollowSymLinks
>                 AllowOverride None
>         </Directory>
> 
>         <Location />
>                 SetHandler python-program
>               ...
>         </Location>
> 
>         Alias /debian /mnt/sda1/ibr/debian
>         <Location /debian>
>                 Options Indexes FollowSymLinks
>                 Order allow,deny
>                 Allow from all
>         </Location>
> 
> <Location /debian> works if I comment out <Location />.

Oh I've forgot. It happens because Apache still passes all requests to 
mod_python because of SetHandler set in the first rule. In subsequent 
locations you have to also reset it with SetHandler None.

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

Reply via email to