This file is indexed.

/etc/apache2/conf-available/phpliteadmin.conf is in phpliteadmin 1.9.7.1-1.

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
# Depends: php7.0

Alias /phpliteadmin /usr/share/phpliteadmin

<Directory /usr/share/phpliteadmin>
    # It will be easier for an user to find the root of the web-application.
    DirectoryIndex phpliteadmin.php
    DirectoryIndexRedirect permanent

    <Files phpliteadmin.config.php>
        # Forbid to read the configuration file that may contain a password.
        # This is helpful for a case when mod_php is not activated.
        Require all denied
    </Files>
</Directory>