On 8/17/06, Peter Brink <[EMAIL PROTECTED]> wrote: > I need to make Django cooexist with mailman. As I understand it, Django > normally proccesses all requests which are sent to www.my-domain.name. > What I need to figure out is how to avoid that. I want to get Django to > ignore some URLs. For exampel, I would like to have requests to > www.my-domain.name/mailman to be handled completly outside Django.
Hey Peter, This is simple to do -- just put a "SetHandler None" for /mailman/ in Apache's httpd.conf file. <Location "/mailman/"> SetHandler None </Location> Adrian -- Adrian Holovaty holovaty.com | djangoproject.com --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---