قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-21 22:47:43 +00:00
28 خطوط
807 B
ApacheConf
28 خطوط
807 B
ApacheConf
# Allow direct web access to Web cron
|
|
<IfModule mod_version.c>
|
|
<IfVersion < 2.4>
|
|
<Files "archive.php">
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</Files>
|
|
</IfVersion>
|
|
<IfVersion >= 2.4>
|
|
<Files "archive.php">
|
|
Require all granted
|
|
</Files>
|
|
</IfVersion>
|
|
</IfModule>
|
|
<IfModule !mod_version.c>
|
|
<IfModule !mod_authz_core.c>
|
|
<Files "archive.php">
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</Files>
|
|
</IfModule>
|
|
<IfModule mod_authz_core.c>
|
|
<Files "archive.php">
|
|
Require all granted
|
|
</Files>
|
|
</IfModule>
|
|
</IfModule>
|