Blame view

backend/config/main.php 2.95 KB
54f2fc2b   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <?php
      $params = array_merge(
          require __DIR__ . '/../../common/config/params.php',
          require __DIR__ . '/../../common/config/params-local.php',
          require __DIR__ . '/params.php',
          require __DIR__ . '/params-local.php'
      );
      
      return [
          'id'                  => 'app-backend',
          'homeUrl'             => '/rest',
          'basePath'            => dirname(__DIR__),
          'controllerNamespace' => 'backend\controllers',
          'bootstrap'           => [ 'log' ],
          'modules'             => [],
          'components'          => [
              'request'      => [
                  'baseUrl'   => '/rest',
                  'csrfParam' => '_csrf-backend',
f2dfcc96   Alexey Boroda   -Searching applied
20
21
22
                  'parsers'   => [
                      'application/json' => 'yii\web\JsonParser',
                  ],
54f2fc2b   Alexey Boroda   first commit
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
              ],
              'user'         => [
                  'identityClass'   => 'common\models\User',
                  'enableAutoLogin' => true,
                  'identityCookie'  => [
                      'name'     => '_identity-backend',
                      'httpOnly' => true,
                  ],
              ],
              'session'      => [
                  // this is the name of the session cookie used for login on the backend
                  'name' => 'advanced-backend',
              ],
              'log'          => [
                  'traceLevel' => YII_DEBUG ? 3 : 0,
                  'targets'    => [
                      [
                          'class'  => 'yii\log\FileTarget',
                          'levels' => [
                              'error',
                              'warning',
                          ],
                      ],
                  ],
              ],
92e6e7c0   Alexey Boroda   -Logger attached
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
              'monolog' => [
                  'class' => '\Mero\Monolog\MonologComponent',
                  'channels' => [
                      'main' => [
                          'handler' => [
                              [
                                  'type'  => 'rotating_file',
                                  'path'  => '@runtime/logs/insert.log',
                                  'level' => 'debug',
                                  'max_files' => 6,
                              ]
                          ],
                          'processor' => [],
                      ],
                  ],
              ],
54f2fc2b   Alexey Boroda   first commit
64
65
66
67
68
69
70
71
              'errorHandler' => [
                  'errorAction' => 'site/error',
              ],
              'urlManager'   => [
                  'enablePrettyUrl'     => true,
                  'enableStrictParsing' => true,
                  'showScriptName'      => false,
                  'rules'               => [
f2dfcc96   Alexey Boroda   -Searching applied
72
73
74
75
76
77
                      [
                          'class'         => 'yii\rest\UrlRule',
                          'controller'    => 'call',
                          'extraPatterns' => [
                              'GET search' => 'search',
                          ],
54f2fc2b   Alexey Boroda   first commit
78
79
80
81
82
83
                      ],
                  ],
              ],
          ],
          'params'              => $params,
      ];