2018-08-12 00:59:39 +02:00
|
|
|
<?php
|
|
|
|
# This is the database configuration of Movim
|
|
|
|
# You need to copy an rename this file to 'db.inc.php' and complete the values
|
|
|
|
$conf = [
|
|
|
|
# The type can be 'pgsql' or 'mysql'
|
2020-07-24 12:31:07 +02:00
|
|
|
'type' => 'pgsql',
|
2018-08-12 00:59:39 +02:00
|
|
|
# The database username
|
2022-02-03 08:21:04 +01:00
|
|
|
'username' => '__DB_USER__',
|
2018-08-12 00:59:39 +02:00
|
|
|
# The password
|
|
|
|
'password' => '__DB_PWD__',
|
|
|
|
# Where can we find the database ?
|
|
|
|
'host' => 'localhost',
|
2020-07-24 12:31:07 +02:00
|
|
|
# The port number, 3306 for MySQL and 5432 for PostgreSQL
|
|
|
|
'port' => 5432,
|
2018-08-12 00:59:39 +02:00
|
|
|
# The database name
|
|
|
|
'database' => '__DB_NAME__'
|
|
|
|
];
|