db.example.inc.php 543 B

123456789101112131415161718
  1. <?php
  2. # This is the database configuration of Movim
  3. # You need to copy an rename this file to 'db.inc.php' and complete the values
  4. $conf = [
  5. # The type can be 'pgsql' or 'mysql'
  6. 'type' => 'mysql',
  7. # The database username
  8. 'username' => 'username',
  9. # The password
  10. 'password' => 'password',
  11. # Where can we find the database ?
  12. 'host' => 'localhost',
  13. # The port number, 3306 for MySQL and 5432 for PostGreSQL
  14. 'port' => 3306,
  15. # The database name
  16. 'database' => 'movim'
  17. ];