This file is indexed.

/usr/share/doc/phpbb3/examples/config.php is in phpbb3 3.0.10-4+deb7u3.

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
28
29
30
31
32
<?php
 
//
// phpBB 3.x configuration file
//
  
/*
 The Database Management System to use
 Any of: mysql, postgres, sqlite
 Other DBMSs not supported by Debian's dbconfig-common: mysql4, mssql, oracle, msaccess, mssql-odbc

 Note: use mysql4 only to enable transaction support, which you must enable
 in MySQL first. 'mysql' works fine with MySQL 4.x.
*/
$dbms = 'mysql';
   
/*
 In $dbhost, 'localhost' means local UNIX socket connection rather than TCP/IP
 to localhost. If you want the latter, write 127.0.0.1 or the equivalent of
 localhost.localdomain
*/
$dbhost = 'localhost';
$dbname = 'phpbb';
$dbuser = 'phpbb';
$dbpasswd = '';
    
$table_prefix = 'phpbb_';
$acm_type = 'file';

$url_forum = 'my.board';

define('PHPBB_INSTALLED', true);