This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
default.config.php
40 lines (36 loc) · 1.56 KB
/
default.config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?
/*****************************************************************************
**
** grr >:(
** https://github.com/pokebyte/grr
** Copyright (C) 2013 Akop Karapetyan
**
** This program 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 2 of the License, or
** (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.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
**
******************************************************************************
*/
// config.php defaults
// User's timezone. Crucial for correct date/time information
// For a list of possible values, see:
// http://php.net/manual/en/timezones.php
define('TIMEZONE', null); // example: 'America/Los_Angeles'
// MySQL database information
define('MYSQL_HOSTNAME', null); // example: 'localhost'
define('MYSQL_USERNAME', null); // example: 'user'
define('MYSQL_PASSWORD', null); // example: 'password'
define('MYSQL_DATABASE', null); // example: 'grr'
define('MYSQL_PORT', null); // 'null' to use default port
define('MYSQL_SOCKET', null); // 'null' to use default socket
?>