mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
b3a494ef21
* Apply example_ynh (#37) * Adding more informations to fix `movim.ERROR: Error: Call to undefined function GuzzleHttp\Psr7\uri_for() in /var/www/movim/vendor/ratchet/pawl/src/Connector.php (line 126) Trace #0 /var/www/movim/vendor/ratchet/pawl/src/Connector.php(38): Ratchet\Client\Connector->generateRequest('ws://127.0.0.1:...', Array, Array) #1 /var/www/movim/linker.php(323): Ratchet\Client\Connector->__invoke('ws://127.0.0.1:...', Array, Array) #2 {main} [] []` Co-authored-by: yalh76 <yalh@yahoo.com>
17 lines
554 B
PHP
17 lines
554 B
PHP
<?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'
|
|
'type' => 'pgsql',
|
|
# The database username
|
|
'username' => '__DB_USER__',
|
|
# The password
|
|
'password' => '__DB_PWD__',
|
|
# Where can we find the database ?
|
|
'host' => 'localhost',
|
|
# The port number, 3306 for MySQL and 5432 for PostgreSQL
|
|
'port' => 5432,
|
|
# The database name
|
|
'database' => '__DB_NAME__'
|
|
];
|