So far I have only been able to block ip address on a per host basis, I would like to block ip addresses for all hosts in apache.
I've tried various combinations of
<Directory /var/www/html>
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
deny from aa.bb.cc.dd
deny from ee.ff.gg.hh
</Directory>
Directory,Location etc... however all of the options I have tried either don't do anything or they cause other .htaccess files to be ignored resulting in private areas of my site to be wide open.