]> git.pld-linux.org Git - packages/nagios.git/blame - nagios-apache.conf
- suggest some basic plugins in main package
[packages/nagios.git] / nagios-apache.conf
CommitLineData
7fa2503d 1# $Id$
6bc25cae 2
c821c47b
ER
3# We grant access to static files for everybody, as the files are available
4# publically anyway, but without having it with http password i'm able to link
b2715b2c
ER
5# icons to jabber notify messages...
6<Directory /usr/share/nagios>
c821c47b
ER
7 Allow from all
8</Directory>
9
b2715b2c 10<Directory /usr/lib/nagios/cgi>
d6e59eb6 11 Options ExecCGI
96018fcf 12
b2715b2c
ER
13 # WITHOUT SSL
14 <IfModule !mod_ssl.c>
15 Order deny,allow
16 Deny from all
17 Allow from 127.0.0.1
18 </IfModule>
19
20 # WITH SSL ENABLED
21 <IfModule mod_ssl.c>
22 SSLRequireSSL
96018fcf 23
b2715b2c
ER
24 Allow from all
25 AuthType Basic
26 AuthUserFile /etc/webapps/nagios/passwd
27 AuthGroupFile /etc/webapps/nagios/group
28 AuthName "Nagios"
29 Require group nagios
30 </IfModule>
96018fcf 31</Directory>
09ae3cf4 32
8dc11f4f
ER
33ScriptAlias /nagios/cgi-bin/ /usr/lib/nagios/cgi/
34Alias /nagios/ /usr/share/nagios/
This page took 0.081802 seconds and 4 git commands to generate.