hi list,
i have to build up very big IP-deny-list for n directories, where
each list is the same. so what am i searching for is something like
#define mylist a.mycompany.com b.mycompany.com c.mycompany.com
<Directory "/anywhere">
Order Allow,Deny
Allow from mycompany.com
Deny from $mylist
AuthName "FernUni Intern"
AuthType Basic
</Directory>
or should i use
<Directory "/anywhere">
Order Allow,Deny
Allow from mycompany.com
Include mydenylist.conf
AuthName "FernUni Intern"
AuthType Basic
</Directory>
with a one-line mydenylist.conf
Deny a.mycompany.com b.mycompany.com c.mycompany.com
in it? any is welcome

jens