]> git.pld-linux.org Git - packages/cacti.git/blob - cacti-apache.conf
make logrotate compatible with ac
[packages/cacti.git] / cacti-apache.conf
1 #
2 # Cacti: An rrd based graphing tool
3 #
4
5 Alias /cacti /usr/share/cacti
6 <Directory /usr/share/cacti>
7         <IfModule mod_authz_core.c>
8                 # Apache 2.4
9                 Require all granted
10         </IfModule>
11         <IfModule !mod_authz_core.c>
12                 # Apache 1.3, 2.x
13                 Order allow,deny
14                 Allow from all
15         </IfModule>
16 </Directory>
17
18 <Directory /usr/share/cacti/install>
19         # mod_security overrides.
20         # Uncomment these if you use mod_security.
21         # allow POST of application/x-www-form-urlencoded during install
22         #SecRuleRemoveById 960010
23         # permit the specification of the rrdtool paths during install
24         #SecRuleRemoveById 900011
25 </Directory>
This page took 0.029054 seconds and 3 git commands to generate.