This file is indexed.

/etc/apache2/conf-available/collabtive.conf is in collabtive 1.2-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

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

<Directory /usr/share/collabtive/www>
    Options +FollowSymLinks
    Options -Indexes
    AllowOverride None

    order deny,allow
    allow from all

    <IfModule mod_php5.c>
        php_flag file_uploads On
        php_flag short_open_tag Off

        php_value upload_max_filesize 20M
        php_value post_max_size 20M
    </IfModule>

    <IfModule mod_dir.c>
        DirectoryIndex index.php
    </IfModule>
</Directory>

<Directory /usr/share/collabtive/www/files>
    Options -ExecCGI
    Options -Indexes
</Directory>