Blame view

frontend/config/main.php 1.41 KB
1755c393   Yarik   Basic template in...
1
2
3
4
5
6
7
8
9
10
  <?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-frontend',
b66c9c5a   Alexey Boroda   -Admin template s...
11
      'homeUrl' => '/',
1755c393   Yarik   Basic template in...
12
13
14
15
16
17
      'basePath' => dirname(__DIR__),
      'bootstrap' => ['log'],
      'controllerNamespace' => 'frontend\controllers',
      'components' => [
          'request' => [
              'csrfParam' => '_csrf-frontend',
b66c9c5a   Alexey Boroda   -Admin template s...
18
              'baseUrl' => '',
1755c393   Yarik   Basic template in...
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
          ],
          'user' => [
              'identityClass' => 'common\models\User',
              'enableAutoLogin' => true,
              'identityCookie' => ['name' => '_identity-frontend', 'httpOnly' => true],
          ],
          'session' => [
              // this is the name of the session cookie used for login on the frontend
              'name' => 'advanced-frontend',
          ],
          'log' => [
              'traceLevel' => YII_DEBUG ? 3 : 0,
              'targets' => [
                  [
                      'class' => 'yii\log\FileTarget',
                      'levels' => ['error', 'warning'],
                  ],
              ],
          ],
          'errorHandler' => [
              'errorAction' => 'site/error',
          ],
1755c393   Yarik   Basic template in...
41
42
43
44
45
46
          'urlManager' => [
              'enablePrettyUrl' => true,
              'showScriptName' => false,
              'rules' => [
              ],
          ],
1755c393   Yarik   Basic template in...
47
48
49
      ],
      'params' => $params,
  ];