ispCP - Board - Support
Comment protéger le répertoire /stats/ avec awstats statique - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega International Area (/forum-22.html)
+--- Forum: French Corner (/forum-25.html)
+--- Thread: Comment protéger le répertoire /stats/ avec awstats statique (/thread-3028.html)



Comment protéger le répertoire /stats/ avec awstats statique - natural - 04-14-2008 03:27 AM

Salut à tous ,

Voila je voudrais savoir comment faire pour :protéger le répertoire /stats/ avec awstats statique ?
htacces et htpasswd ok j'avais compris Wink mais ou dois je les mettre ?
Pourriez-vous m'expliquer la marche à suivre sans éviter de sauter les étapes Tongue suis lent à comprendre Wink

Merci d'avance ,
Quentin


RE: Comment protéger le répertoire /stats/ avec awstats statique - momo - 06-14-2008 11:32 AM

edit ce fichier

Code:
# nano /etc/apache2/sites-enabled/01_awstats.conf

pour qu'il ressemble à ça

Code:
<Directory /usr/lib/cgi-bin>
AllowOverride All
Options +ExecCGI
DirectoryIndex awstats.pl
Order allow,deny
Allow from all

AuthType Basic
AuthName "AWStats"
AuthUserFile /var/www/.htpasswd //l'endroit ou tu vas créer ton fichier
AuthGroupFile /dev/null ///dev/null = group n'existe pas
Require user USER1 USER2 USER3
</Directory>[/code]

Ensuite, tu va créer ton fichier qui va contenir tes password :

//créer fichier
Code:
# htpasswd -c /var/www/.htpasswd [USER1
//ajouter user
Code:
htpasswd /var/www/.htpasswd [USER2]

redémarre apache

Code:
# /etc/init.d/apache2 reload

bonne chance