-
Notifications
You must be signed in to change notification settings - Fork 2
/
_settings.php
executable file
·58 lines (58 loc) · 1.24 KB
/
_settings.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
<?php return array (
'components' =>
array (
'db' =>
array (
'connectionString' => 'mysql:host=localhost;dbname=profiler',
'username' => 'profilertest',
'password' => 'profilertest',
),
'cache' =>
array (
'class' => 'CDummyCache',
),
'user' =>
array (
'authTimeout' => '1000',
),
'mail' =>
array (
'class' => 'ext.yii-mail.YiiMail',
'transportType' => 'smtp',
'viewPath' => 'application.views.mail',
'logging' => true,
'dryRun' => false,
'transportOptions' =>
array (
'host' => 'YOUR_MAIL_HOST',
'username' => 'YOUR_MAIL_USERNAME',
'password' => 'YOUR_MAIL_PASSWORD',
'encryption' => 'ssl',
'port' => '465',
'options' =>
array (
'ssl' =>
array (
'allow_self_signed' => true,
'verify_peer' => false,
),
),
),
),
),
'params' =>
array (
'installer' =>
array (
'db' =>
array (
'installer_hostname' => 'localhost',
'installer_database' => 'profiler',
),
),
'installed' => true,
),
'name' => 'Profiler',
'language' => 'en_gb',
'theme' => 'Sandstone',
); ?>