2009/1/2 Collin Grady <[email protected]>: > > On Thu, Jan 1, 2009 at 7:31 PM, Graham Dumpleton > <[email protected]> wrote: >> Post the relevant bits of the Apache configuration so can see exactly >> what you are doing. > > http://dpaste.com/104434/ > > Is there a proper solution or am I doomed to the one that errors (I'm > afraid it may stop working if something changes in apache during an > update or such)
Does the following work: WSGIScriptAlias / /mnt/web/django.wsgi <Directory /mnt/web> Order allow,deny Allow from all Deny from env=bad_bot </Directory> You had Order directive values such that allow would be interpreted last and that was saying to allow everything. Graham --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en -~----------~----~----~----~------~----~------~--~---
