I run a webserver under Apache with several virtual hosts. I would like to prohobit the access to certain file names, but instead of using a deny rule on each vh I would like to know if I can achieve this with global configuration?
Update
I found the following to suit my needs.
<FilesMatch "myfile.ext">
Require all denied
</FilesMatch>