forked from mikelbring/tinyissue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.app.example.php
More file actions
44 lines (36 loc) · 822 Bytes
/
config.app.example.php
File metadata and controls
44 lines (36 loc) · 822 Bytes
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
41
42
43
44
<?php
return array(
/**
* Fill out your MySQL database settings
*/
'mysql' => array(
'host' => 'localhost',
'database' => 'database_name',
'username' => 'database_user',
'password' => 'database_password',
),
/**
* Mail Settings
* - Put in the name and email you would like email from Tiny Issue to come from
* - This is usually only for setting up new accounts
*/
'mail' => array(
'name' => 'Your E-Mail Name',
'email' => 'name@domain.com'
),
/**
* Specify your timezone
* - http://php.net/manual/en/timezones.php
*/
'timezone' => 'America/Chicago',
/**
* Put in a random key combination to use as your session keys
* Up to 32 characters
*/
'key' => 'yourrandomkey',
/**
* True if you are using mod rewrite
* False if you are not
*/
'mod_rewrite' => false,
);