Baurzhan Ismagulov wrote:
> Hello,
> 
> I have the following lines in /etc/apache2/sites-available/default:
> 
>         DocumentRoot /var/www
>         <Directory />
>                 Options FollowSymLinks
>                 AllowOverride None
>         </Directory>
> 
>         Alias /debian/ /mnt/sda1/ibr/debian/
>         <Directory /mnt/sda1/ibr/debian>
>                 Options Indexes FollowSymLinks
>                 Order allow,deny
>                 Allow from all
>         </Directory>
> 
>         <Location />
>                 SetHandler python-program
>               ...
> 
> When I try to access http://localhost/debian/ , I get Django's nice 404
> error message. http://httpd.apache.org/docs/2.0/mod/core.html#location
> says Location directives are processed after the Directory directives.
> Can I have Django accessible at /, and other content still accessible
> under other directories?

Yes. You should Directories describing '/debian/' _after_ your 
'<Location />' for this general rule not overwrite more specific ones. 
Also you may have to convert your <Directories> to <Locations>

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