ulogger-server/config.default.php

42 lines
1.2 KiB
PHP
Raw Normal View History

2013-06-19 13:27:14 +02:00
<?php
2017-01-30 21:36:44 +01:00
/* μlogger
2013-06-19 13:27:14 +02:00
*
2017-01-30 21:36:44 +01:00
* Copyright(C) 2017 Bartek Fabiszewski (www.fabiszewski.net)
2013-06-19 13:27:14 +02:00
*
* This is free software; you can redistribute it and/or modify it under
2017-04-07 00:05:28 +02:00
* the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
2013-06-19 13:27:14 +02:00
* (at your option) any later version.
*
* This program 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.
*
2017-04-07 00:05:28 +02:00
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
2013-06-19 13:27:14 +02:00
*/
2017-01-30 21:36:44 +01:00
2017-04-09 23:35:55 +02:00
// This is default configuration file.
2017-01-30 21:36:44 +01:00
// Copy it to config.php and customize
2019-02-22 20:22:27 +01:00
// Database config
2020-02-19 18:42:44 +01:00
// PDO data source name, eg.:
// mysql:host=localhost;port=3307;dbname=ulogger;charset=utf8
// mysql:unix_socket=/path/to/mysql.sock;dbname=ulogger;charset=utf8
2020-02-19 18:42:44 +01:00
// pgsql:host=localhost;port=5432;dbname=ulogger
// sqlite:/path/to/ulogger.db
2020-02-19 18:42:44 +01:00
$dbdsn = "";
2013-06-21 11:15:09 +02:00
2020-02-19 18:42:44 +01:00
// Database user name
$dbuser = "";
2013-06-21 11:15:09 +02:00
2020-02-19 18:42:44 +01:00
// Database user password
$dbpass = "";
2013-06-19 13:27:14 +02:00
2020-02-19 18:42:44 +01:00
// Optional table names prefix, eg. "ulogger_"
$dbprefix = "";
?>