summaryrefslogtreecommitdiffstats
path: root/network/squidanalyzer/README.Slackware
diff options
context:
space:
mode:
author LITKK <admin@litkk.com.ua>2013-12-27 15:13:23 +0100
committer Erik Hanson <erik@slackbuilds.org>2014-01-07 11:13:06 -0600
commitc6c9e9b381dfbceebc15a60036e2512ced7c79f9 (patch)
tree269337c3cdd0fcb2414cea0e6e1a4f63d171b096 /network/squidanalyzer/README.Slackware
parentd98d6b923773d27a0193bce58fd86983578a0833 (diff)
downloadslackbuilds-c6c9e9b381dfbceebc15a60036e2512ced7c79f9.tar.gz
slackbuilds-c6c9e9b381dfbceebc15a60036e2512ced7c79f9.tar.xz
network/squidanalyzer: Added (squid logs parser).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'network/squidanalyzer/README.Slackware')
-rw-r--r--network/squidanalyzer/README.Slackware21
1 files changed, 21 insertions, 0 deletions
diff --git a/network/squidanalyzer/README.Slackware b/network/squidanalyzer/README.Slackware
new file mode 100644
index 0000000000..afea158301
--- /dev/null
+++ b/network/squidanalyzer/README.Slackware
@@ -0,0 +1,21 @@
+Some configurations notes for Apache web server
+
+1. Modify your httpd.conf to allow access to HTML output like follow:
+ Alias /squidreport /var/www/squidreport
+ <Directory /var/www/squidreport>
+ Options -Indexes FollowSymLinks MultiViews
+ AllowOverride None
+ Order deny,allow
+ Deny from all
+ Allow from 127.0.0.1
+ </Directory>
+2. If necessary, give additional host access to SquidAnalyzer in httpd.conf.
+ Restart and ensure that httpd is running.
+3. Browse to http://my.host.dom/squidreport/ to ensure that things are working
+ properly.
+4. Setup a cronjob to run squid-analyzer daily:
+
+ # SquidAnalyzer log reporting daily
+ 0 2 * * * /usr/bin/squid-analyzer > /dev/null 2>&1
+
+or run it manually.