Changes between Version 10 and Version 11 of WebServerLogs


Ignore:
Timestamp:
07/12/13 13:02:47 (3 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebServerLogs

    v10 v11  
    1616== webalizer == 
    1717 
    18 Documentation need completing. 
     18PenguinServer is set up to get a copy of the Nginx awstats.log file very day via logrotate, see AwStatsInstall#Copyingthelogstopenguin and on Penguin there is a puffin user account which has this crontab: 
     19 
     20{{{ 
     2105 07 * * * /usr/local/bin/puffin-webalizer 
     22}}} 
     23 
     24Which runs {{{/usr/local/bin/puffin-webalizer}}} which contains: 
     25 
     26{{{ 
     27#!/bin/bash 
     28 
     29DATE=$(date "+%Y-%m-%d") 
     30LOG_FILE=/home/puffin/nginx/puffin-nginx-$DATE.log 
     31STATS_DIR=/web/penguin.transitionnetwork.org/www/webalizer/puffin 
     32 
     33cd $STATS_DIR 
     34webalizer -p -n transitionnetwork.org -o $STATS_DIR $LOG_FILE 
     35}}} 
     36 
     37These logs are password protected and available at https://penguin.transitionnetwork.org/webalizer/puffin/ 
    1938 
    2039== logstalgia == 
     
    5877[[Image(goaccess-puffin.png)]] 
    5978 
     79When we upgrade to Wheezy, see ticket:535 we should set up Goaccess to generate a HTML / email report per day. 
     80 
    6081For more information see the goaccess web site at http://goaccess.prosoftcorp.com/ 
    6182