On Apache2, I have a VirtualHost with a number of <Directory> directives/sections containing multiple access control statements
i.e.
<Directory /foo>
Order Deny,Allow
Deny from all
Allow from ...
Allow from ...
...
</Directory>
...
Is there a way to specify the access control at a higher level (above <Directory>)? Or should I be using macros?
Thanks in advance!