-
Notifications
You must be signed in to change notification settings - Fork 1
/
mode_staging.php
42 lines (36 loc) · 1.04 KB
/
mode_staging.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
<?php
/**
* Staging configuration
* Usage:
* - Online website
* - Production DB
* - All details on error
*/
return [
'yiiDebug' => false,
// This is the specific Web application configuration for this mode.
// Supplied config elements will be merged into the main config array.
'configWeb' => [
'components' => [
'db' => [
'dsn' => '...',
'username' => '...',
'password' => '...',
],
'log' => [
'traceLevel' => 0,
'targets' => [
[
'class' => yii\log\FileTarget::class,
'levels' => ['error', 'warning'],
],
],
],
],
],
// This is the Console application configuration. Any writable
// console application properties can be configured here.
// Leave array empty if not used.
// Use value 'inherit' to copy from generated configWeb.
'configConsole' => []
];