movim/templates/db.inc.php.j2

19 lines
621 B
Django/Jinja

<?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' => '{{ movim_db_type }}',
# The database username
'username' => '{{ movim_db_user }}',
# The password
'password' => '{{ movim_db_passwd }}',
# Where can we find the database ?
'host' => '{{ movim_db_host }}',
# The port number, 3306 for MySQL and 5432 for PostgreSQL
'port' => {{ movim_db_port }},
# The database name
'database' => '{{ movim_db_name }}'
];