Matomo 5
RHEL 8.9
Apache 2.4.7
‘Required Private Directories’ warning will not go away despite the fact the files/directories in questions are not accessible via the web. The files/directories in questions serve a 403.
We have followed the directions here:
Apache config for our Matomo folder:
<Directory "/our/dir/for/matomo/">
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
Our .htaccess files have been created. Sample .htaccess file which are present in all directories triggering the warning:
<Files "*">
<IfModule mod_version.c>
<IfVersion < 2.4>
Order Deny,Allow
Deny from All
</IfVersion>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
</IfModule>
<IfModule !mod_version.c>
<IfModule !mod_authz_core.c>
Order Deny,Allow
Deny from All
</IfModule>
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
</IfModule>
</Files>
Could this be a bug or are we missing something?