~ubuntu-branches/ubuntu/maverick/cacti/maverick-security

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Alias /cacti /usr/share/cacti/site

<Directory /usr/share/cacti/site>
	Options +FollowSymLinks
	AllowOverride None
	order allow,deny
	allow from all

	AddType application/x-httpd-php .php

	<IfModule mod_php5.c>
		php_flag magic_quotes_gpc Off
		php_flag short_open_tag On
		php_flag register_globals Off
		php_flag register_argc_argv On
		php_flag track_vars On
		# this setting is necessary for some locales
		php_value mbstring.func_overload 0
		php_value include_path .
	</IfModule>

	DirectoryIndex index.php
</Directory>