summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-02-21 12:28:35 +0100
committerHolger Levsen <holger@layer-acht.org>2015-02-21 12:28:35 +0100
commit6f6148c1e0aa21f34d840781aed4e422a1e24c6b (patch)
tree3a32d1e8a4119fa8ab210a7a3d1fba394dbf0a63 /etc
parent5a88adc44003e7d22110d77b93cedff9c0391da8 (diff)
downloadjenkins.debian.net-6f6148c1e0aa21f34d840781aed4e422a1e24c6b.tar.xz
drop visitors report
Diffstat (limited to 'etc')
-rw-r--r--etc/apache2/sites-available/jenkins.debian.net1
-rwxr-xr-xetc/cron.daily/visitors23
2 files changed, 0 insertions, 24 deletions
diff --git a/etc/apache2/sites-available/jenkins.debian.net b/etc/apache2/sites-available/jenkins.debian.net
index b9e0667c..c6009777 100644
--- a/etc/apache2/sites-available/jenkins.debian.net
+++ b/etc/apache2/sites-available/jenkins.debian.net
@@ -130,7 +130,6 @@ Use common-debian-service-https-redirect reproducible.debian.net
# proxy everything but a few urls
ProxyPass /munin !
ProxyPass /server-status !
- ProxyPass /visitors-report.html !
ProxyPass /calamaris !
ProxyPass /robots.txt http://localhost:8080/userContent/robots.txt
# map /d-i-preseed-cfgs to /UserContent/d-i-preseed-cfgs
diff --git a/etc/cron.daily/visitors b/etc/cron.daily/visitors
deleted file mode 100755
index d9b74f86..00000000
--- a/etc/cron.daily/visitors
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-# Copyright 2012 Holger Levsen <holger@layer-acht.org>
-# released under the GPLv=2
-
-[ -x /usr/bin/visitors ] || exit 0
-[ -x /usr/bin/ip2host ] || exit 0
-
-if [ ! -f /usr/share/doc/zutils/copyright ] ; then
- echo package zutils needs to be installed too
- exit 1
-fi
-
-LOGS=$(mktemp)
-DOT=$(mktemp)
-# FIXME: provide monthly stats and don't run this daily
-zcat /var/log/apache2/access.log* | grep -v 127.0.0.1 | sort | ip2host > $LOGS
-
-visitors --debug -AKMY -m 30 $LOGS > /var/www/visitors-report.html 2> /dev/null
-#visitors --debug -VT -m 30 --prefix https://jenkins.debian.net $LOGS > $DOT
-# dot -Tpng -o/var/lib/www/visitors-report-graph.png $DOT
-
-rm $LOGS $DOT