Files
Sentri/pub/config-sample.php
2026-01-01 10:54:18 +01:00

23 lines
495 B
PHP

<?php
/**
* This file is used for connecting to the database and configuring the superuser password
* Rename this file to config.php to make it take effect
*/
# The superuser password (login name is superuser)
$superuserpassword = "changethispassword!";
# database server name
$db_server = "localhost";
# database server port (default = 3306)
$db_port = "3306";
# database name
$db_database = "db";
# database user
$db_user = "db-user";
# Database password
$db_password = "db-password";