Outils personnels

Thruk Apache Configuration

De wikiGite

Révision datée du 24 mai 2011 à 07:54 par Nicolas (discussion | contributions) (Page créée avec « LoadModule fcgid_module /usr/lib/apache2/modules/mod_fcgid.so <VirtualHost *:80> ServerName thruk.company.local DocumentRoot /home/thruk/Thruk/root/ Custo... »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)

LoadModule fcgid_module /usr/lib/apache2/modules/mod_fcgid.so

<VirtualHost *:80>

   ServerName   thruk.company.local


   DocumentRoot /home/thruk/Thruk/root/
   CustomLog    /home/thruk/Thruk/logs/access.log combined
   ErrorLog     /home/thruk/Thruk/logs/error.log


   <Directory /home/thruk/Thruk/root/>
       Options FollowSymLinks
       AllowOverride All
       order allow,deny
       allow from all
   </Directory>


   AliasMatch /thruk/(.*\.cgi|.*\.html)  /home/thruk/Thruk/script/thruk_fastcgi.pl/thruk/$1
   <Location /thruk>
       Options ExecCGI
       Order allow,deny
       Allow from all
       AuthName "Monitoring Access"
       AuthType Basic
       AuthUserFile /home/thruk/Thruk/htpasswd.users
       Require valid-user
   </Location>


   <IfModule mod_fcgid.c>
     AddHandler fcgid-script .pl
     MaxRequestsPerProcess 100
   </IfModule>


</VirtualHost>