mirror of
https://codeberg.org/mclemens/tsmmonitor2.git
synced 2024-11-07 15:17:25 -05:00
42 lines
1.5 KiB
PHP
42 lines
1.5 KiB
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
************************************************************************
|
||
|
This file is part of TSM Monitor.
|
||
|
|
||
|
TSM Monitor is free software: you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation, either version 3 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
TSM Monitor is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with TSM Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||
|
************************************************************************
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* config.php, TSM Monitor
|
||
|
*
|
||
|
* This file defines user configureable global constants
|
||
|
*
|
||
|
* @author Michael Clemens
|
||
|
* @package tsmmonitor
|
||
|
*/
|
||
|
|
||
|
// ** database settings ** //
|
||
|
$db_type = 'mysql'; // Name of the DBMS hosting the tsmmonitor database
|
||
|
$db_name = 'tsmmonitor'; // Name of the tsmmonitor database
|
||
|
$db_user = 'tsmmonitor'; // Username used to connect to the tsmmonitor database
|
||
|
$db_password = 'tsmmonitor'; // Password used to connect to the tsmmonitor database
|
||
|
$db_host = 'localhost'; // Hostname or IP address the DBMS is listening on
|
||
|
$db_port = '3306'; // Port number the DBMS is listening on
|
||
|
$db_charset = 'utf8';
|
||
|
$db_collate = '';
|
||
|
?>
|