2021-01-05 23:55:50 +01:00
|
|
|
<?php
|
2021-07-22 15:29:37 +02:00
|
|
|
/*
|
|
|
|
This is an example for your configuration file,
|
|
|
|
read comments and replace the "blanks".
|
|
|
|
You can then copy the file in GALETTE_CONFIG_PATH/config.inc.php
|
2021-01-05 23:55:50 +01:00
|
|
|
|
2021-07-22 15:29:37 +02:00
|
|
|
$Id$
|
|
|
|
*/
|
2021-01-05 23:55:50 +01:00
|
|
|
|
2021-07-22 15:29:37 +02:00
|
|
|
/* choose your database engine, values : pgsql|mysql */
|
|
|
|
define("TYPE_DB", "pgsql");
|
|
|
|
/* hostname for the database */
|
|
|
|
define("HOST_DB", "localhost");
|
|
|
|
/* tcp port for the database */
|
|
|
|
define("PORT_DB", "5432");
|
|
|
|
/* the username for the database */
|
2022-04-13 22:25:43 +02:00
|
|
|
define("USER_DB", "__DB_USER__");
|
2021-07-22 15:29:37 +02:00
|
|
|
/* password for the username define above */
|
|
|
|
define("PWD_DB", "__DB_PWD__");
|
|
|
|
/* the database name */
|
|
|
|
define("NAME_DB", "__DB_NAME__");
|
|
|
|
/* tables name prefix (default is galette_) */
|
|
|
|
define("PREFIX_DB", "galette_");
|
|
|
|
/* FIXME will disappear soon */
|
|
|
|
define("STOCK_FILES", "tempimages");
|