/usr/share/libgda-5.0/php/gda-secure-config.php is in libgda-5.0-common 5.2.2-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 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | <?php
/*
* This file should be put outside the server's ROOT directory to avoid
* malicious accessing, for example in /etc.
*
* It is read only by the gda-config.php script.
*/
/*
* initial shared secret: will have to be passed as the SECRET argument when opening
* the connection from Libgda
*/
$init_shared = "MySecret";
/*
* declared connections: for each connection which can be opened by Libgda, the
* the connection's password and the real connection's DSN need to be added respectively
* to the $cnc and $dsn arrays, using the connection name as a key. The connection name
* and password have no significance outside of the Libgda's context and be arbitrary.
* However the real connection's DSN need to be valid for the PEAR's MDB2 module, as
* per http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php
*
*/
/* sample connection cnc1 */
$cnc["cnc1"] = "MyPass1";
$dsn["cnc1"] = "pgsql://gdauser:GdaUser@127.0.0.1/test";
/* sample connection cnc2 */
$cnc["cnc2"] = "MyPass2";
$dsn["cnc2"] = "mysql://gdauser:GdaUser@unix(/var/run/mysqld/mysqld.sock)/test1";
?>
|