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

« back to all changes in this revision

Viewing changes to debian/cacti.apache.conf

  • Committer: Bazaar Package Importer
  • Author(s): Sean Finney
  • Date: 2010-08-17 22:22:02 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20100817222202-4a173d1dfbfswz71
Tags: 0.8.7g-1
* New upstream release (Closes: #592465).
* Update context in 05_no-adodb.patch to remove fuzz.
* Remove "official" patches from previous release.
* Remove 563955_undefined_index_local_data_id.patch, incorporated upstream.
* Remove CVE-2010-2092.patch, incorporated upstream.
* Import new batch of "official" upstream patches.
* Update apache configuration to work in FastCGI deployments (Closes: #593203).
   - thanks to Thijs Kinkhorst <thijs@uvt.nl> (Closes: #578909).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Alias /cacti /usr/share/cacti/site
2
2
 
3
 
<DirectoryMatch /usr/share/cacti/site>
 
3
<Directory /usr/share/cacti/site>
4
4
        Options +FollowSymLinks
5
5
        AllowOverride None
6
6
        order allow,deny
8
8
 
9
9
        AddType application/x-httpd-php .php
10
10
 
11
 
        php_flag magic_quotes_gpc Off
12
 
        php_flag short_open_tag On
13
 
        php_flag register_globals Off
14
 
        php_flag register_argc_argv On
15
 
        php_flag track_vars On
16
 
        # this setting is necessary for some locales
17
 
        php_value mbstring.func_overload 0
18
 
        php_value include_path .
 
11
        <IfModule mod_php5.c>
 
12
                php_flag magic_quotes_gpc Off
 
13
                php_flag short_open_tag On
 
14
                php_flag register_globals Off
 
15
                php_flag register_argc_argv On
 
16
                php_flag track_vars On
 
17
                # this setting is necessary for some locales
 
18
                php_value mbstring.func_overload 0
 
19
                php_value include_path .
 
20
        </IfModule>
19
21
 
20
22
        DirectoryIndex index.php
21
 
</DirectoryMatch>
 
23
</Directory>
22
24