Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorPiotr <hello@piotr.cz>2014-04-27 19:51:13 +0400
committerPiotr <hello@piotr.cz>2014-04-27 19:51:13 +0400
commit3388e3b5ad1c111d7a8ff49792cdac186b430ee7 (patch)
treed42674f8f7d93d6ee7d83ba1e69237ca25736a01 /misc
parentd2bda6f6072064b198408c6b1f5110d9ec56d12a (diff)
Explicitly enable access to web cron script
See issue http://forum.piwik.org/read.php?2,109382
Diffstat (limited to 'misc')
-rw-r--r--misc/cron/.htaccess5
1 files changed, 5 insertions, 0 deletions
diff --git a/misc/cron/.htaccess b/misc/cron/.htaccess
new file mode 100644
index 0000000000..0e8f647436
--- /dev/null
+++ b/misc/cron/.htaccess
@@ -0,0 +1,5 @@
+# Allow direct web access to selected files
+<FilesMatch "^(archive\.php|updatetoken\.php)$">
+ Order Allow,Deny
+ Allow from all
+</Files>