- Minor changes to interface. - Fixed different missing includes. - Access now denied to api calls that are related to disabled modules. - Fixed sorting of CPU and memory in server overview.
20 lines
408 B
PHP
20 lines
408 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
|
|
*/
|
|
|
|
# database server name
|
|
$db_server = "localhost";
|
|
|
|
# database server port
|
|
$db_port = "3306";
|
|
|
|
# database name
|
|
$db_database = "sentri_dev";
|
|
|
|
# database user
|
|
$db_user = "sentri_dev";
|
|
|
|
# Database password
|
|
$db_password = "nTYN30NE9b3EkSm4xpLMhBDSPk"; |