How can one deny access to all subdirectories of a given directory? (While allowing to manually modify the access rights for single items in the directory tree.)
I tried to do it with the <Directory(Match)>
directives. The server configuration (000-sites-enabled) looks like this:
DocumentRoot /var/www
<Directory /var/www>
Allow from all
Deny from none
Order deny,allow
</Directory>
<Directory /var/www/*>
Deny from all
</Directory>
A query to http://localhost/
successfully displays /var/www/index.html
and all queries to any subdirectories fail.
The problem is: any query to a file in the httproot fails - i.e. requesting http://localhost/index.html
will result into 403 Forbidden
.
The <Directory(Match)>
directives seem to actually match directories AND files!?
To see if this is true, i tried:
<Directory /var/www/i*>
Deny from all
</Directory>
This denies access only to files/directories starting with 'i'.
Is there a way to alter this behaviour and let <Directory>
match only directories? Is there another way to accomplish that all the subdirectories are denied? (besides denying all of them manually or enabling all files manually)
in the end, the solution turns out to be pretty simple:
<Directory /var/www/*/>
Allow from None
Order allow,deny
</Directory>
Note the trailing slash /
after the directory pattern, which will make it match only directories, not files!
This works exactly like we would expect from the <Directory>
-directive - in that it denies access only to the direct subdirectories of /var/www/
.
Specified subdirectories (anywhere in the tree) can still manually be re-enabled with <Directory>
directives.
This is in contrast to <DirectoryMatch>
which will
- also match all files & directories in the tree and
- override all <Files>
or <Directory>
directives for any item in the tree.