forked from mikelbring/tinyissue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.app.example.php
89 lines (73 loc) · 1.66 KB
/
config.app.example.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
return array(
/**
* You can define your URL or leave blank to let us figure it out
* - Sometimes in non-apache setups you need to define your url
*/
'url' => '',
/**
* Fill out your database settings. Make sure that the driver is correct: 'mysql' for MySQL, 'sqlsrv' for MSSQL,
* 'pgsql' for PostgreSQL, or 'sqlite' for SQLite
*/
'database' => array(
'driver' => 'mysql',
'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
*
* Default Mail Transport
* |
* | Possible Values
* | mail (PHP Mail Function)
* | sendmail (Sendmail)
* | smtp (Define Custom SMTP)
*
*/
'mail' => array(
'from' => array(
'name' => 'Your E-Mail Name',
'email' => '[email protected]',
),
'transport' => 'mail',
/**
* Transport Settings
*
* Transport settings if using sendmail or SMTP
*/
'sendmail' => array(
'path' => ''
),
'smtp' => array(
'server' => '',
'port' => 25,
/*
* Encryption support, SSL/TLS, used with gmail servers
* Default: blank
*/
'encryption' => '',
'username' => '',
'password' => '',
),
),
/**
* 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,
);