Current time: 05-01-2024, 09:14 AM Hello There, Guest! (LoginRegister)


Post Reply 
Awstats password protection
Author Message
simple Offline
Junior Member
**
Graph Team

Posts: 143
Joined: Dec 2006
Reputation: 0
Post: #59
RE: Awstats password protection
I did a quick but working fix: I manually compiled mod_auth_mysql from source, there are some pretty good explanations in the web. One would be:
Code:
wget http://heanet.dl.sourceforge.net/sourceforge/modauthmysql/mod_auth_mysql-3.0.0.tar.gz
wget http://www.bleb.org/software/mod_auth_mysql-3.0.0-apache-2.2.3.patch
tar zxf mod_auth_mysql-3.0.0.tar.gz
apt-get install apache2-prefork-dev libmysqlclient15-dev
cd mod_auth_mysql-3.0.0
patch < ../mod_auth_mysql-3.0.0-apache-2.2.3.patch
sed -i 's|#include <mysql.h>|#include <mysql/mysql.h>|' mod_auth_mysql.c
apxs2 -c -lmysqlclient -lm -lz mod_auth_mysql.c
apxs2 -i mod_auth_mysql.la
echo 'LoadModule mysql_auth_module /usr/lib/apache2/modules/mod_auth_mysql.so' >/etc/apache2/mods-available/auth_mysql.load
a2enmod auth_mysql
apache2ctl graceful

Next step would be activating the protection in /etc/apache2/sites-available/01_awstats.conf like this:
Code:
<Directory /usr/lib/cgi-bin>
   [..]        
    AuthName                        "AWStats Login"
    AuthType                        Basic
    AuthMYSQLEnable                 on
    AuthMySQLAuthoritative          on
    AuthMySQLHost                   localhost
    AuthMySQLUser                   <sql-user with access to DB ispcp>
    AuthMySQLPassword               <password of mysql-user>
    AuthMySQLDB                     ispcp
    AuthMySQLUserTable              admin
    AuthMySQLNameField              admin_name
    AuthMySQLPasswordField          admin_pass
    AuthMySQLNoPasswd               off
    AuthMySQLPwEncryption           PHP_MD5
</Directory>

This is only a quick fix so the stats are password protected. Customers of the server can still log in to all stats hosted there, but still pretty much better than without any authentication.
11-25-2008 06:57 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply 


Messages In This Thread
Awstats password protection - Cube - 10-18-2007, 06:05 AM
RE: Awstats password protection - RatS - 10-18-2007, 07:52 AM
RE: Awstats password protection - Cube - 10-18-2007, 08:32 AM
RE: Awstats password protection - raphael - 10-18-2007, 09:48 AM
RE: Awstats password protection - BioALIEN - 10-18-2007, 07:08 PM
RE: Awstats password protection - robmorin - 10-24-2007, 12:43 AM
RE: Awstats password protection - BeNe - 10-25-2007, 10:29 PM
RE: Awstats password protection - BeNe - 10-25-2007, 11:42 PM
RE: Awstats password protection - BeNe - 10-28-2007, 03:10 AM
RE: Awstats password protection - Cube - 11-01-2007, 01:42 AM
RE: Awstats password protection - jmeyerdo - 11-01-2007, 05:26 AM
RE: Awstats password protection - BeNe - 11-01-2007, 06:40 AM
RE: Awstats password protection - Mike - 12-26-2007, 07:35 AM
RE: Awstats password protection - divion - 01-09-2008, 03:21 PM
RE: Awstats password protection - BeNe - 01-23-2008, 05:50 AM
RE: Awstats password protection - BeNe - 01-24-2008, 12:12 AM
RE: Awstats password protection - BioALIEN - 01-24-2008, 12:27 AM
RE: Awstats password protection - BeNe - 01-24-2008, 06:10 AM
RE: Awstats password protection - Cube - 02-19-2008, 10:22 AM
RE: Awstats password protection - Kwik - 02-22-2008, 07:03 PM
RE: Awstats password protection - rauschr - 05-13-2008, 07:47 AM
RE: Awstats password protection - BeNe - 04-16-2008, 05:25 PM
RE: Awstats password protection - ghislain - 04-16-2008, 09:48 PM
RE: Awstats password protection - Eminos - 04-23-2008, 12:44 AM
RE: Awstats password protection - Eminos - 04-24-2008, 08:52 PM
RE: Awstats password protection - Cube - 04-25-2008, 05:29 AM
RE: Awstats password protection - momo - 06-14-2008, 12:46 AM
RE: Awstats password protection - BeNe - 06-16-2008, 03:34 AM
RE: Awstats password protection - Eminos - 06-16-2008, 03:36 AM
RE: Awstats password protection - Cube - 06-16-2008, 04:00 AM
RE: Awstats password protection - Eminos - 06-16-2008, 04:01 AM
RE: Awstats password protection - momo - 06-17-2008, 02:26 AM
RE: Awstats password protection - Eminos - 06-17-2008, 03:29 AM
RE: Awstats password protection - momo - 06-17-2008, 04:46 AM
RE: Awstats password protection - Eminos - 06-17-2008, 04:50 AM
RE: Awstats password protection - momo - 06-17-2008, 05:01 AM
RE: Awstats password protection - memic - 06-22-2008, 08:11 AM
RE: Awstats password protection - RatS - 08-09-2008, 07:39 PM
RE: Awstats password protection - obey - 08-12-2008, 07:18 PM
RE: Awstats password protection - RatS - 08-13-2008, 05:31 AM
RE: Awstats password protection - lbm - 09-09-2008, 04:04 AM
RE: Awstats password protection - BeNe - 09-09-2008, 06:07 AM
RE: Awstats password protection - lbm - 09-10-2008, 08:27 PM
RE: Awstats password protection - noel - 10-27-2008, 11:41 AM
RE: Awstats password protection - noel - 10-27-2008, 10:21 PM
RE: Awstats password protection - simple - 11-24-2008, 04:55 AM
RE: Awstats password protection - sci2tech - 11-24-2008, 05:15 AM
RE: Awstats password protection - simple - 11-25-2008 06:57 PM
RE: Awstats password protection - sci2tech - 11-26-2008, 02:02 AM
RE: Awstats password protection - sci2tech - 11-27-2008, 09:21 AM
RE: Awstats password protection - Cube - 11-28-2008, 05:07 AM
RE: Awstats password protection - sci2tech - 11-28-2008, 06:25 AM
RE: Awstats password protection - momo - 01-16-2009, 06:36 AM
RE: Awstats password protection - momo - 01-20-2009, 08:38 AM
RE: Awstats password protection - simple - 01-20-2009, 08:44 AM
RE: Awstats password protection - bulforce - 01-29-2009, 04:31 PM
RE: Awstats password protection - BeNe - 01-29-2009, 04:46 PM
RE: Awstats password protection - sci2tech - 01-29-2009, 10:26 PM

Forum Jump:


User(s) browsing this thread: 2 Guest(s)